ISR with fallback: true?
Unanswered
Zenaida Dove posted this in #help-forum
Zenaida DoveOP
In docs (https://nextjs.org/docs/pages/api-reference/functions/get-static-paths#when-is-fallback-true-useful) it says:
- fallback: true will not update generated pages, for that take a look at Incremental Static Regeneration.
- fallback: 'blocking' will not update generated pages by default. To update generated pages, use Incremental Static Regeneration in conjunction with fallback: 'blocking'.
Does that mean I can only use
- fallback: true will not update generated pages, for that take a look at Incremental Static Regeneration.
- fallback: 'blocking' will not update generated pages by default. To update generated pages, use Incremental Static Regeneration in conjunction with fallback: 'blocking'.
Does that mean I can only use
fallback: blocking for ISR + On-demand Revalidation?1 Reply
Zenaida DoveOP
https://github.com/vercel/next.js/discussions/51523#discussioncomment-6222641 says it's possible, but the docs are confusing 🤔