Muthukumarank commited on
Commit
0ec1b60
·
verified ·
1 Parent(s): 2b06ed0

Add complete frontend: frontend/vite.config.ts

Browse files
Files changed (1) hide show
  1. frontend/vite.config.ts +7 -0
frontend/vite.config.ts ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ import { defineConfig } from 'vite'
2
+ import react from '@vitejs/plugin-react'
3
+
4
+ export default defineConfig({
5
+ plugins: [react()],
6
+ server: { port: 5173, proxy: { '/api': 'http://localhost:8000' } }
7
+ })