From 5b685e251bfd7a3ac812430620aa52d18eead047 Mon Sep 17 00:00:00 2001 From: Simon Cambier Date: Wed, 27 Aug 2025 18:21:52 +0200 Subject: [PATCH] "Fixed" trailing slash bug The goto() function does not respect no trailing slashes, so the app breaks --- src/routes/+layout.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/+layout.ts b/src/routes/+layout.ts index a032602..b8f3716 100644 --- a/src/routes/+layout.ts +++ b/src/routes/+layout.ts @@ -1,2 +1,3 @@ export const prerender = true export const ssr = false +export const trailingSlash = 'always' \ No newline at end of file