Files
NetMapper2026/frontend/vite.config.ts
T

17 lines
304 B
TypeScript
Raw Normal View History

import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 5173,
proxy: {
'/api': {
2026-08-04 19:42:02 +00:00
target: 'http://127.0.0.1:8000',
changeOrigin: true,
},
},
},
});