From d55f774fd381234a5a69dff478bb388e94a3b888 Mon Sep 17 00:00:00 2001 From: KTibow Date: Thu, 12 Dec 2024 18:26:17 -0800 Subject: [PATCH] no more relative --- svelte.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index 71bdfe6..a7a9530 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -4,7 +4,12 @@ import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; /** @type {import('@sveltejs/kit').Config} */ const config = { preprocess: vitePreprocess(), - kit: { adapter: adapter() }, + kit: { + adapter: adapter(), + paths: { + relative: false, + }, + }, }; export default config;