+layout.js 655 Bytes
Newer Older
AJ ONeal's avatar
AJ ONeal committed
1
2
3
// if you want to generate a static html file
// for your page.
// Documentation: https://kit.svelte.dev/docs/page-options#prerender
Timothy J. Baek's avatar
Timothy J. Baek committed
4
// export const prerender = true;
AJ ONeal's avatar
AJ ONeal committed
5
6
7
8
9

// if you want to Generate a SPA
// you have to set ssr to false.
// This is not the case (so set as true or comment the line)
// Documentation: https://kit.svelte.dev/docs/page-options#ssr
Timothy J. Baek's avatar
Timothy J. Baek committed
10
export const ssr = false;
AJ ONeal's avatar
AJ ONeal committed
11
12
13
14
15
16

// How to manage the trailing slashes in the URLs
// the URL for about page witll be /about with 'ignore' (default)
// the URL for about page witll be /about/ with 'always'
// https://kit.svelte.dev/docs/page-options#trailingslash
export const trailingSlash = 'ignore';