0
How does Incremental Static Regeneration (ISR) work in Next.js?
subina kallyani
medium
0completed
11
Answer
ISR allows you to update static pages after deployment. Using the revalidate property in getStaticProps, Next.js regenerates the page in the background when a request comes after the revalidation time. This makes it a hybrid between static and dynamic rendering.
Click to Reveal Answer
Tap anywhere to see the solution
Revealed
Comments0