From b267962a94d4620ac0f8d237573a833403296718 Mon Sep 17 00:00:00 2001 From: Paulo Ricardo Severo Date: Sat, 14 Sep 2024 09:24:33 -0300 Subject: [PATCH] docs: remove confusing reference to 'SPA' (#28991) --- docs/2.guide/1.concepts/3.rendering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/2.guide/1.concepts/3.rendering.md b/docs/2.guide/1.concepts/3.rendering.md index ee0d2bd3b6..96fc08f10f 100644 --- a/docs/2.guide/1.concepts/3.rendering.md +++ b/docs/2.guide/1.concepts/3.rendering.md @@ -136,7 +136,7 @@ export default defineNuxtConfig({ The different properties you can use are the following: - `redirect: string`{lang=ts} - Define server-side redirects. -- `ssr: boolean`{lang=ts} - Disables server-side rendering for sections of your app and make them SPA-only with `ssr: false` +- `ssr: boolean`{lang=ts} - Disables server-side rendering of the HTML for sections of your app and make them render only in the browser with `ssr: false` - `cors: boolean`{lang=ts} - Automatically adds cors headers with `cors: true` - you can customize the output by overriding with `headers` - `headers: object`{lang=ts} - Add specific headers to sections of your site - for example, your assets - `swr: number | boolean`{lang=ts} - Add cache headers to the server response and cache it on the server or reverse proxy for a configurable TTL (time to live). The `node-server` preset of Nitro is able to cache the full response. When the TTL expired, the cached response will be sent while the page will be regenerated in the background. If true is used, a `stale-while-revalidate` header is added without a MaxAge.