This commit is contained in:
Simon Martens
2024-10-17 14:05:01 +02:00
commit 3e06b0af76
54 changed files with 16934 additions and 0 deletions

9
src/vite.config.js Normal file
View File

@@ -0,0 +1,9 @@
import { resolve } from "path";
import { defineConfig } from "vite";
export default defineConfig({
build: {
root: resolve(__dirname, "src"),
outDir: "./dist/",
emptyOutDir: true,
},
});