diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-09-28 00:43:43 -0400 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-10-05 18:16:26 -0400 |
| commit | 671b36c2c8d4026eb7a34f0ac7bd5720b34f1a0d (patch) | |
| tree | 4f7079c167d25f0b458d2005c59285fc0c59b9bb /hi-ui/src/routes | |
| parent | d2af16cd8368dc52d5d8702eb0ef2cf74a33cdb9 (diff) | |
Configure the SvelteKit build process to build a static site.
This is the [recommended] adapter for a single-page app. That's approximately how I expect to deploy the UI.
[recommended]: https://kit.svelte.dev/docs/single-page-apps
Diffstat (limited to 'hi-ui/src/routes')
| -rw-r--r-- | hi-ui/src/routes/+layout.svelte | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hi-ui/src/routes/+layout.svelte b/hi-ui/src/routes/+layout.svelte index f54f3bf..67a5fa5 100644 --- a/hi-ui/src/routes/+layout.svelte +++ b/hi-ui/src/routes/+layout.svelte @@ -1,5 +1,7 @@ <script> import "../app.css"; + + export const ssr = false; </script> <div id="app"> |
