Files
fe_supplier_frontend/config/proxy.ts
2025-06-23 19:15:13 +08:00

23 lines
484 B
TypeScript

export default {
dev: {
'/api': {
// target: 'http://10.242.37.148:18022',//
target: 'http://10.0.0.10:18012',//
changeOrigin: true,
pathRewrite: { '^/api': '' },
},
'/upload': {
target: 'http://10.0.0.10:18013',//
changeOrigin: true,
pathRewrite: { '^/upload': '' },
},
},
prod: {
'/api/*': {
target: 'http://uscm.unicom.local:18022',//
changeOrigin: true,
pathRewrite: { '^': '' },
},
}
};