From 486ab20682fabc119a1a72c4af31d3d69e4f51b7 Mon Sep 17 00:00:00 2001 From: Zachary Ross Date: Wed, 17 Apr 2024 21:21:50 -0400 Subject: [PATCH] Fix paths.base issue --- src/app.html | 2 +- src/routes/+layout.js | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app.html b/src/app.html index 4adb46e..f414b2b 100644 --- a/src/app.html +++ b/src/app.html @@ -6,7 +6,7 @@ %sveltekit.head% - +
%sveltekit.body%
diff --git a/src/routes/+layout.js b/src/routes/+layout.js index c8cacf0..5fd74ce 100644 --- a/src/routes/+layout.js +++ b/src/routes/+layout.js @@ -1 +1,2 @@ -export const prerender = true; \ No newline at end of file +export const prerender = true; +export const trailingSlash = 'always'; \ No newline at end of file