Do I need to use Vercel to use preview mode? #13650
-
I've got an older nextjs site that's currently on Netlify. If I would like to update this site to use preview mode, do I need to switch to Vercel? I seemingly can't call |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can use Preview Mode on any host that supports Besides Vercel (the platform Next.js was made for), you could host apps with Preview Mode on Heroku, Google Cloud: Cloud Run, AWS Elastic Beanstalk, Render, etc. Netlify is a static host, so you'll need to switch providers to leverage Preview Mode. |
Beta Was this translation helpful? Give feedback.
You can use Preview Mode on any host that supports
next start
, or a serverless-compatible host like Vercel or AWS (via Serverless Framework).Besides Vercel (the platform Next.js was made for), you could host apps with Preview Mode on Heroku, Google Cloud: Cloud Run, AWS Elastic Beanstalk, Render, etc.
Netlify is a static host, so you'll need to switch providers to leverage Preview Mode.