Skip to content

Commit

Permalink
[docs] clarification for prerendering default (#4498)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Apr 4, 2022
1 parent 73c09e2 commit cc5a7ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/docs/13-configuration.md
Expand Up @@ -232,7 +232,7 @@ See [Prerendering](/docs/page-options#prerender). An object containing zero or m

- `concurrency` — how many pages can be prerendered simultaneously. JS is single-threaded, but in cases where prerendering performance is network-bound (for example loading content from a remote CMS) this can speed things up by processing other tasks while waiting on the network response
- `crawl` — determines whether SvelteKit should find pages to prerender by following links from the seed page(s)
- `default` — set to `true` to prerender every page without `export const prerender = false`
- `default` — set to `true` to prerender encountered pages not containing `export const prerender = false`
- `enabled` — set to `false` to disable prerendering altogether
- `entries` — an array of pages to prerender, or start crawling from (if `crawl: true`). The `*` string includes all non-dynamic routes (i.e. pages with no `[parameters]` )
- `onError`
Expand Down

0 comments on commit cc5a7ff

Please sign in to comment.