🐛 Fix relative path in app

This commit is contained in:
Rune Harlyk
2025-10-20 20:34:33 +02:00
parent b14f005b22
commit 64ef3d31eb
7 changed files with 18 additions and 8 deletions
+2 -1
View File
@@ -1,7 +1,8 @@
import type { PageLoad } from './$types'
import { goto } from '$app/navigation'
import { resolve } from '$app/paths'
export const load = (async () => {
goto('/')
goto(resolve('/'))
return
}) satisfies PageLoad