Deployment Guide
Build Process
# Install dependencies
npm install
# Build for production
npm run build
# Start production server
npm start
Environment Setup
- Configure environment variables
- Set up CDN (optional)
- 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.