From d270ab49d802f8eb882e2d402cf50ff764ce0ce0 Mon Sep 17 00:00:00 2001 From: Nate Emerson Date: Fri, 19 May 2023 10:28:15 -0700 Subject: [PATCH] docs: update static to isr (#20964) Co-authored-by: Daniel Roe --- docs/2.guide/1.concepts/3.rendering.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/2.guide/1.concepts/3.rendering.md b/docs/2.guide/1.concepts/3.rendering.md index 09a10dbf8a..25720986f5 100644 --- a/docs/2.guide/1.concepts/3.rendering.md +++ b/docs/2.guide/1.concepts/3.rendering.md @@ -103,8 +103,8 @@ The different properties you can use are the following: - `ssr` - Disables server-side rendering for sections of your app and make them SPA-only with `ssr: false` - `cors` - Automatically adds cors headers with `cors: true` - you can customize the output by overriding with `headers` - `headers` - Add specific headers to sections of your site - for example, your assets -- `swr` - Add cache headers to the server response and cache it in the server or reverse proxy for a configurable TTL. The `node-server` preset of Nitro is able to cache the full response. For Netlify and Vercel, the response is also added to the CDN layer. -- `static` - The behavior is the same as `swr` except that there is no TTL; the response is cached until the next deployment. On Netlify and Vercel, it enables full incremental static generation. +- `swr` - Add cache headers to the server response and cache it in the server or reverse proxy for a configurable TTL. The `node-server` preset of Nitro is able to cache the full response. +- `isr` - The behavior is the same as `swr` except that we are able to add the response to the CDN cache on platforms that support this (currently Netlify or Vercel) - `prerender` - Prerenders routes at build time and includes them in your build as static assets - `experimentalNoScripts` - Disables rendering of Nuxt scripts and JS resource hints for sections of your site.