From 10eae70a185a44ae86b86251872106038baa688b Mon Sep 17 00:00:00 2001 From: spiral Date: Mon, 16 May 2022 23:14:06 -0400 Subject: [PATCH] feat(dashboard): change dist folder, enable source maps --- dashboard/vite.config.js | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/dashboard/vite.config.js b/dashboard/vite.config.js index 8f84f8b2..fdfe8c31 100644 --- a/dashboard/vite.config.js +++ b/dashboard/vite.config.js @@ -7,12 +7,7 @@ export default defineConfig({ plugins: [svelte()], optimizeDeps: { exclude: ["svelte-navigator"] }, build: { - rollupOptions: { - input: { - main: 'index.html', - 404: '404.html' - }, - }, - outDir: "docs" + outDir: "dist", + sourcemap: true, } })