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, } })