From 71b4b79dfbceb250f2df484e8ca0d4a8fcf6b49c Mon Sep 17 00:00:00 2001 From: ctwhome Date: Thu, 14 Mar 2024 15:42:21 +0100 Subject: [PATCH] Update svelte.config.js to include '/zarrviz' in the base path --- svelte.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index f9d6089..ee076a0 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -15,7 +15,7 @@ const config = { fallback: '404.html' }), paths: { - base: process.argv.includes('dev') ? '' : process.env.BASE_PATH + base: process.argv.includes('dev') ? '' : process.env.BASE_PATH + '/zarrviz' } } };