This repository has been archived by the owner on Jun 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
675d70a
commit 4195243
Showing
5 changed files
with
78 additions
and
72 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1 @@ | ||
<script> | ||
import "../app.postcss"; | ||
// 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 = true; | ||
// 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'; | ||
</script> | ||
|
||
<slot /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import "../app.postcss"; | ||
|
||
export const prerender = true; | ||
|
||
// 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'; |