This commit is contained in:
vcoppe
2024-08-14 12:14:29 +02:00
parent 879b65953f
commit 66b57e0013
2 changed files with 1 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
import { languages } from '$lib/languages'; import { languages } from '$lib/languages';
import { _, isLoading } from 'svelte-i18n'; import { _, isLoading } from 'svelte-i18n';
let location: string; let location: string = '';
let title: string; let title: string;
$: if ($page.route.id) { $: if ($page.route.id) {

View File

@@ -15,7 +15,6 @@ const config = {
adapter: adapter({ adapter: adapter({
pages: 'build', pages: 'build',
assets: 'build', assets: 'build',
fallback: '404.html',
precompress: false, precompress: false,
strict: true strict: true
}), }),