structure

This commit is contained in:
hamid zarghami
2025-08-20 10:19:39 +03:30
commit dda986d06d
23 changed files with 4398 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
});