Guides
Deployment Guide

Deployment Guide

Build Process

# Install dependencies
npm install
 
# Build for production
npm run build
 
# Start production server
npm start

Environment Setup

  1. Configure environment variables
  2. Set up CDN (optional)
  3. Configure build cache

Deployment Platforms

Vercel

vercel deploy

Netlify

# netlify.toml
[build]
  command = "npm run build"
  publish = ".next"

See Next.js Integration for platform-specific details.