dataease-dm/core/core-frontend/config/dev.ts

19 lines
401 B
Java
Raw Normal View History

2023-10-23 22:00:14 +08:00
export default {
server: {
proxy: {
'/api/f': {
target: 'http://localhost:8100',
changeOrigin: true,
rewrite: path => path.replace(/^\/api\/f/, '')
},
// 使用 proxy 实例
'/api': {
2024-09-14 16:49:27 +08:00
target: 'http://localhost:8100',
2023-10-23 22:00:14 +08:00
changeOrigin: true,
rewrite: path => path.replace(/^\/api/, 'de2api')
}
},
port: 8080
}
}