add debug capabilities in vscode

This commit is contained in:
2026-04-27 12:41:29 +02:00
parent 567c2f8da4
commit 798c5d69f9
3 changed files with 51 additions and 10 deletions
+7
View File
@@ -4,4 +4,11 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist',
rollupOptions: {
input: 'src/main.jsx',
},
sourcemap: true,
},
})