Below you'll find instructions on how to deploy with Vercel.
Getting Started
Environment Variables
Deployment Types
Vercel is a hosting platform for static sites and serverless functions. It's used to host our Storybook and Next.js applications.
The Vercel for GitHub integration is used to deploy our applications by pushing to GitHub. Vercel also provides support for preview and production environment deployments.
Vercel supports adding environment variables for Development (development
),
Preview (test
), and Production (production
) environments. For more
information, see Environment Variables from the Vercel docs.
Preview deployments are the default for all deployments. Each time you push to a branch or make a deployment using the
vercel
command, this is a preview deployment.
Production deployments are made in two different circumstances. Each time you merge to the Production Branch (commonly
main
) or make a deployment using thevercel --prod
command, this is a production deployment.
For more information, visit Deployment Types from the Vercel docs.