Deployment

npm install -g vercel

Add each variable from your .env file to your Vercel project, including the ones prefixed with “REACT_APP_”. You’ll be prompted to enter its value and choose one or more environments (development, preview, or production). See Vercel Environment Variables to learn more about how this works, how to update values through the Vercel UI, and how to use secrets for extra security.

vercel env add plain VARIABLE_NAME

Run this command to deploy to a unique preview URL. Your “preview” environment variables will be used.

vercel

Run this command to deploy to your production domain. Your “production” environment variables will be used.

vercel --prod

See Vercel Deployments for more details.