Files
Arsenal_IQ/frontend/vite.config.ts
T
blaisadmin 04c74de25a MVP
2026-03-25 21:54:50 -04:00

21 lines
392 B
TypeScript

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
host: true,
proxy: {
'/api': {
target: 'http://backend:5000',
changeOrigin: true,
},
'/health': {
target: 'http://backend:5000',
changeOrigin: true,
},
},
},
});