feat: add web client frontend with monorepo config.

This commit is contained in:
K
2026-04-28 23:56:23 +05:30
parent 3a0c32ea8f
commit a5cf7bbfda
37 changed files with 5505 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
"/api": "http://localhost:5000",
},
},
})