Subchapter 7.47
references/support-topics/nuxt-route-rules-cache-isr.mdMarkdown1 KBView on GitHub
For Nuxt on Vercel, route-level caching usually belongs in routeRules. Match the lever to the route: prerender for static pages, ISR for shared content, and SSR for request-specific views.
Inspect nuxt.config, inline route rules, server routes, pages, auth/session reads, and observed cache or ISR read/write patterns. Verify whether the route should be Vercel cache-backed ISR rather than generic SWR.
Do not cache authenticated, cart, checkout, preview, or per-user routes. Do not add routeRules without proving the route is public and the freshness window is acceptable.
Name the observed route signal, current routeRule or missing rule, chosen cache mode, and exact config line.