mini vite client

This commit is contained in:
jif-oai
2026-01-16 18:23:28 +01:00
parent 1668ca726f
commit 8869f662bf
13 changed files with 1960 additions and 5 deletions

View File

@@ -0,0 +1,10 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
strictPort: true,
},
});