25 lines
623 B
TypeScript
25 lines
623 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: 5173,
|
|
proxy: {
|
|
// All backend API calls go through /backend -> strips prefix
|
|
'/backend': {
|
|
target: 'http://127.0.0.1:8000',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/backend/, ''),
|
|
},
|
|
// Local agent (unauthenticated)
|
|
'/api': {
|
|
target: 'http://127.0.0.1:8001',
|
|
changeOrigin: true,
|
|
rewrite: (path) => path.replace(/^\/api/, ''),
|
|
},
|
|
},
|
|
},
|
|
});
|