gis-bi/core/core-frontend/config/dev.ts
2025-03-12 09:15:30 +08:00

19 lines
395 B
Java

export default {
server: {
proxy: {
'/api/f': {
target: 'http://localhost:8100',
changeOrigin: true,
rewrite: path => path.replace(/^\/api\/f/, '')
},
// 使用 proxy 实例
'/api': {
target: 'http://localhost:8105',
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, '')
}
},
port: 8080
}
}