Updated frontend

This commit is contained in:
2026-05-21 13:38:32 +05:30
parent 130fa7a956
commit 72d954db38
55 changed files with 63068 additions and 3405 deletions
+16
View File
@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
port: 5173,
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
},
},
},
})