Add 'web/' from commit 'd8907af5e7234f12256eb3e5e4f7243eb83474e4'

git-subtree-dir: web
git-subtree-mainline: d572e3d241
git-subtree-split: d8907af5e7
This commit is contained in:
Alireza Vaezi
2025-08-07 20:57:47 -04:00
129 changed files with 29668 additions and 0 deletions

10
web/vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
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(),
],
})