From 3a80cb86cbe7f93ef0eef0d666761c542b7debc1 Mon Sep 17 00:00:00 2001 From: Kim Jeong-won Date: Thu, 23 Nov 2023 23:47:54 +0900 Subject: [PATCH] fix: config.kit.paths.base for pointing root --- svelte.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index 471dfad..c248d8b 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -15,7 +15,7 @@ const config = { fallback: '404.html' }), paths: { - base: process.argv.includes('dev') ? '' : 'https://threedalpeng.github.io/' + base: process.argv.includes('dev') ? '' : '' } } };