Similar to Heroku , Vercel is a deployment and collaboration platform for frontend developers.
It enables developers to host websites and web services that deploy instantly and scale automatically – all without any config.
Using the CLI can be very good.

requirements
– NODE
– GIT
Create NextJS App
– npm init next-app my-next-app
cd my-next-app
yarn dev
Create Vercel acc
– with github
install vercel-cli
– npm i -g vercel
check if it is installed
vercel –version
login
vercel login
Email
check for email confirmation
Start vercel
vercel
Set yo abd deploy “my-next-app” ?
exclude project.json from git
– .gitignore
If change is made in github on master
Vercel will publish it automatically
Vercel setuup git integration
Settings->git integrations->Install vercel for github
Do changes on project locally
git push –set-upstream origin branh-name-develop
Go to git -> Compare & pull request ( Create pull request )
So the vercel dashboarddisplays two website links:
– Production
– Preview mode
Leave A Comment?