diff --git a/website/src/lib/components/Head.svelte b/website/src/lib/components/Head.svelte index 87f8831c..dacc734f 100644 --- a/website/src/lib/components/Head.svelte +++ b/website/src/lib/components/Head.svelte @@ -4,7 +4,7 @@ import { languages } from '$lib/languages'; import { _, isLoading } from 'svelte-i18n'; - let location: string; + let location: string = ''; let title: string; $: if ($page.route.id) { diff --git a/website/svelte.config.js b/website/svelte.config.js index d5d11a82..c84abeac 100644 --- a/website/svelte.config.js +++ b/website/svelte.config.js @@ -15,7 +15,6 @@ const config = { adapter: adapter({ pages: 'build', assets: 'build', - fallback: '404.html', precompress: false, strict: true }),