Deploy to Vercel
Set up a production deployment on Vercel with environment variables, custom domain, and build configuration.
10-15 min|Beginner
LaunchDeep WorkDeveloperFounder
Prompt Template
Help me deploy my app to Vercel for production. Check my project to determine the framework, build command, and Node version. Review my .env.local (or .env.example) to identify all required environment variables. Pre-deployment checklist: 1. Verify all environment variables are set 2. Check build succeeds locally with production env vars 3. Database connection works from Vercel's IP range (not just localhost) 4. Any serverless function size concerns (which routes are heavy?) 5. Image optimization configured for production images Post-deployment: - Set up custom domain with DNS records - Verify HTTPS is working - Test the critical user flows in production - Set up monitoring/alerts for errors Do NOT suggest Vercel-specific features I haven't asked about (like Edge Runtime or ISR). Keep it simple for a first deployment." **Output format:** Step-by-step deployment guide with commands.
The pre-deployment checklist catches issues that would break your app after deploy (missing env vars, database connectivity). Testing in production is explicit, not assumed.
First production deployment, or when migrating from another platform.