Files
fe_portal_manage_frontend/config/proxy.ts

28 lines
622 B
TypeScript
Raw Normal View History

2025-06-17 14:20:06 +08:00
export default {
dev: {
2025-07-14 14:00:12 +08:00
'/api/v1': {
target: 'http://10.0.0.10:18030',// 茂
changeOrigin: true,
pathRewrite: { '^/api/v1': '/v1' },
},
2025-06-17 14:20:06 +08:00
'/api': {
2025-06-18 18:46:32 +08:00
// target: 'http://10.242.37.148:18022',//
2025-07-14 14:00:12 +08:00
target: 'http://10.0.0.10:18013',//
2025-06-17 14:20:06 +08:00
changeOrigin: true,
pathRewrite: { '^/api': '' },
},
2025-06-18 18:46:32 +08:00
'/upload': {
2025-07-14 14:00:12 +08:00
target: 'http://10.0.0.10:18013',//
2025-06-17 14:20:06 +08:00
changeOrigin: true,
2025-06-18 18:46:32 +08:00
pathRewrite: { '^/upload': '' },
2025-06-17 14:20:06 +08:00
},
},
prod: {
'/api/*': {
2025-06-18 18:46:32 +08:00
target: 'http://uscm.unicom.local:18022',//
2025-06-17 14:20:06 +08:00
changeOrigin: true,
pathRewrite: { '^': '' },
},
}
};