Initial commit

This commit is contained in:
2026-07-17 10:00:33 +01:00
commit 634809c6ca
16 changed files with 9694 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
base: "./",
plugins: [react()],
server: {
host: "127.0.0.1",
port: 5173
},
build: {
outDir: "dist",
emptyOutDir: true
}
});