Skip to content

Commit

Permalink
fix: Enable webapp pre-rendering
Browse files Browse the repository at this point in the history
Unclear if it actually changes anything.
  • Loading branch information
alcroito committed Mar 2, 2023
1 parent 5eab22d commit 1d6cc5e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion webclients/svelte/src/routes/+layout.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const csr = true;
export const prerender = false;
export const prerender = true;
export const ssr = false;
4 changes: 2 additions & 2 deletions webclients/svelte/svelte.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const config = {
}),
paths: {
base: base
},
prerender: { entries: [] }
}
// prerender: { entries: [] }
}
};

Expand Down

0 comments on commit 1d6cc5e

Please sign in to comment.