This commit is contained in:
Kim Ravn Hansen
2025-09-15 12:33:08 +02:00
parent c19557ba33
commit 63dff39be2
12 changed files with 84 additions and 59 deletions

View File

@@ -1,8 +1,12 @@
export default {
import { defineConfig } from "vite";
import devtoolsJson from "vite-plugin-devtools-json";
export default defineConfig({
root: ".",
plugins: [devtoolsJson()],
build: {
outDir: "../public/",
emptyOutDir: true, // also necessary
sourcemap: "inline",
sourcemap: true,
},
};
});