Skip to content

Commit

Permalink
fix: improve JSDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Apr 8, 2024
1 parent 3be330b commit 71c985f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/vike-vue/src/+config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,17 +131,17 @@ declare global {
lang?: string

/**
* If true, render mode is SSR or pre-rendering (aka SSG). In other words, the
* page's HTML will be rendered at build-time or request-time.
* If false, render mode is SPA. In other words, the page will only be
* rendered in the browser.
* If `true`, the page is rendered twice: on the server-side (to HTML) and on the client-side (hydration).
*
* See https://vike.dev/render-modes
* If `false`, the page is rendered only once in the browser.
*
* https://vike.dev/ssr
*
* @default true
*
*/
ssr?: boolean

/**
* Whether to stream the page's HTML. Requires Server-Side Rendering (`ssr: true`).
*
Expand Down

0 comments on commit 71c985f

Please sign in to comment.