Initial Commit

This commit is contained in:
2025-10-25 17:31:31 +05:30
commit caceb7a49d
28 changed files with 7839 additions and 0 deletions

11
vite.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 5173,
},
});