mirror of
https://github.com/open-webui/open-webui
synced 2025-03-04 19:38:54 +00:00
=== Do not change lines below === { "chain": [], "cmd": "codespell -w", "exit": 0, "extra_inputs": [], "inputs": [], "outputs": [], "pwd": "." } ^^^ Do not change lines above ^^^
17 lines
653 B
JavaScript
17 lines
653 B
JavaScript
// if you want to generate a static html file
|
|
// for your page.
|
|
// Documentation: https://kit.svelte.dev/docs/page-options#prerender
|
|
// export const prerender = true;
|
|
|
|
// 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
|
|
export const ssr = false;
|
|
|
|
// How to manage the trailing slashes in the URLs
|
|
// the URL for about page will be /about with 'ignore' (default)
|
|
// the URL for about page will be /about/ with 'always'
|
|
// https://kit.svelte.dev/docs/page-options#trailingslash
|
|
export const trailingSlash = 'ignore';
|