Files
fe_supplier_frontend/config/proxy.ts

23 lines
484 B
TypeScript
Raw Normal View History

2025-06-17 14:20:06 +08:00
export default {
dev: {
'/api': {
2025-06-18 18:46:32 +08:00
// target: 'http://10.242.37.148:18022',//
2025-06-23 19:15:13 +08:00
target: 'http://10.0.0.10:18012',//
2025-06-17 14:20:06 +08:00
changeOrigin: true,
pathRewrite: { '^/api': '' },
},
2025-06-18 18:46:32 +08:00
'/upload': {
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: { '^': '' },
},
}
};