Home > database >  Is it possible to utilize Incremental Static Regeneration on platforms other than Vercel?
Is it possible to utilize Incremental Static Regeneration on platforms other than Vercel?

Time:06-28

I am using Next.js with Static Site Generation. I would like to add Incremental Static Regeneration to my application and host it on a cloud platform.

Is it possible to use ISR on other platforms than Vercel ( like Azure, AWS etc.)? I have been trying to deploy my application on Azure but the ISR doesn't seem to work.

CodePudding user response:

Is it possible to utilize Incremental Static Regeneration on platforms other than Vercel?

  • Yes, It is possible to deploy ISR with NextJS on other platform other than Vercel

  • We can use Microsoft Azure to deploy Next.js with Static Site Generation

    Refer enter image description here

    Disadvantages of Netlify

    • Analytics is a paid feature
    • No database add-ons

    Please refer Experience Next.js on Netlify for more information

  • Related