Skip to content

Commit fcb9f50

Browse files
committed
add notes
1 parent b9d598c commit fcb9f50

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

documentation/docs/20-core-concepts/40-page-options.md

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ export const prerender = 'auto';
3535
3636
The prerenderer will start at the root of your app and generate files for any prerenderable pages or `+server.js` routes it finds. Each page is scanned for `<a>` elements that point to other pages that are candidates for prerendering — because of this, you generally don't need to specify which pages should be accessed. If you _do_ need to specify which pages should be accessed by the prerenderer, you can do so with the `entries` option in the [prerender configuration](/docs/configuration#prerender).
3737

38+
While prerendering, the value of `building` imported from [`$app/environment`](/docs/modules#$app-environment) will be `true`.
39+
3840
#### Prerendering server routes
3941

4042
Unlike the other page options, `prerender` also applies to `+server.js` files. These files are _not_ affected from layouts, but will inherit default values from the pages that fetch data from them, if any. For example if a `+page.js` contains this `load` function...

packages/kit/types/ambient.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ declare module '$app/environment' {
7777
export const browser: boolean;
7878

7979
/**
80-
* SvelteKit analyses your app during the `build` step by running it. During this process, `building` is `true`.
80+
* SvelteKit analyses your app during the `build` step by running it. During this process, `building` is `true`. This also applies during prerendering.
8181
*/
8282
export const building: boolean;
8383

0 commit comments

Comments
 (0)