fix bug structure

This commit is contained in:
hamid zarghami
2025-08-26 22:35:06 +03:30
parent c69d4ea60b
commit 2bc32e9d08
18 changed files with 726 additions and 192 deletions
+5 -4
View File
@@ -1,7 +1,8 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react(), tailwindcss()],
});