initial commit

This commit is contained in:
2025-08-28 14:24:06 +00:00
commit 2105518e85
53 changed files with 11236 additions and 0 deletions

View File

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