?url query param added on ISR routes (Vercel)
In production (Vercel), all my ISR routes have a ?url= query param added, why?
https://website.com/pages/foo become https://website.com/pages/foo?url=/pages/foo when I refresh the page (nothing when I navigate in the website)
This seems to only happen with ISR routes in prod and I can't find anything related in the doc.
nuxt.config.ts
routeRules: {
"/**": { prerender: true },
"/pages/**": { isr: 60 },
//...
}
1 Reply
up