+{/each}
diff --git a/frontend/src/routes/account/+page.svelte b/frontend/src/routes/account/+page.svelte
new file mode 100644
index 00000000..ba7a6f95
--- /dev/null
+++ b/frontend/src/routes/account/+page.svelte
@@ -0,0 +1 @@
+account
diff --git a/frontend/svelte.config.js b/frontend/svelte.config.js
index 1f68cd2f..dccf80d5 100644
--- a/frontend/svelte.config.js
+++ b/frontend/svelte.config.js
@@ -11,7 +11,12 @@ const config = {
// adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list.
// If your environment is not supported or you settled on a specific environment, switch out the adapter.
// See https://kit.svelte.dev/docs/adapters for more information about adapters.
- adapter: adapter()
+ adapter: adapter({
+ fallback: 'index.html'
+ }),
+ prerender: {
+ entries: ['/', '/login', '/welcome']
+ }
}
};