khalilogy

This commit is contained in:
Simon Martens
2025-10-28 15:40:10 +01:00
commit 4e97c14850
102 changed files with 17229 additions and 0 deletions

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

@@ -0,0 +1,15 @@
import { resolve } from "path";
import { defineConfig } from "vite";
export default defineConfig({
build: {
outDir: "./dist/",
emptyOutDir: true,
rollupOptions: {
input: {
main: resolve(__dirname, "index.html"),
impressum: resolve(__dirname, "impressum", "index.html"),
},
},
},
});