first commit

This commit is contained in:
2026-06-02 18:06:19 +05:30
commit ae5085bbf7
35 changed files with 14434 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
import path from "path";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
});