PPR causes unwanted ISR behavior on Vercel #83466
Unanswered
chungweileong94
asked this question in
Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
So recently I enabled PPR on one of my small CRUD dashboard app, where it contains the following routes:
/~/items
- Item Listing/~/items/add
- Add Item/~/items/[id]
- Item Details/~/items/[id]/edit
- Edit ItemPretty much all the routes are marked as partial prerendering. However, I noticed that the app is causing ISR Writes on Vercel, which is unexpected, because I never opt into any ISR feature, nor calling
revalidatePath
&revalidateTag
. Most of the ISR Writes (if not all writes) are coming from/~/items/[id]
. After checking the related logs, they are all coming from a "Background Revalidation", which got me wondering that does the static shell in PPR come with a default time-based revalidation or something?Additional information
Example
No response
Beta Was this translation helpful? Give feedback.
All reactions