DEV Community

Discussion on: Next.js: Should I use SSR or SSG?

Collapse
 
tomdohnal profile image
Tom Dohnal

Does incremental static regeneration work on Netlify?
I believe it could solve a problem with a long build if you're building a lot of pages like seperate blog posts or product pages.

Collapse
 
cassidoo profile image
Cassidy Williams

Using that build plugin listed makes ISR "work" by SSRing those pages currently! The team's still in the process of updating the caching to make it do those runtime builds, but our users have found that the SSRing of those pages works for now. When those caching updates happen on our end, you won't need to make any code changes to have that properly enabled.

Collapse
 
tomdohnal profile image
Tom Dohnal

Okay, thanks for the reply, sound like a clever solution :)