Initial commit

This commit is contained in:
2026-05-09 16:00:38 +03:00
parent 9c5dd913c1
commit 52320f4147
20 changed files with 4814 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
build: {
outDir: "../web-out",
emptyOutDir: true,
},
server: {
port: 5173,
},
});