Files
geo/frontend/vite.config.ts

17 lines
320 B
TypeScript
Raw Normal View History

2026-02-04 00:11:19 +05:00
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
2026-02-04 00:11:19 +05:00
port: 3500,
proxy: {
'/api': {
target: 'http://localhost:5000',
changeOrigin: true,
},
},
},
});