open-webui/src/routes/+layout.js

17 lines
655 B
JavaScript
Raw Normal View History

2023-10-21 22:43:56 +02:00
// if you want to generate a static html file
// for your page.
// Documentation: https://kit.svelte.dev/docs/page-options#prerender
2023-11-15 01:28:51 +01:00
// export const prerender = true;
2023-10-21 22:43:56 +02:00
// 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
2023-11-15 01:28:51 +01:00
export const ssr = false;
2023-10-21 22:43:56 +02:00
// 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';