22 lines
872 B
JavaScript
22 lines
872 B
JavaScript
/**
|
|
* 在生产环境 代理是无法生效的,所以这里没有生产环境的配置
|
|
* The agent cannot take effect in the production environment
|
|
* so there is no configuration of the production environment
|
|
* For details, please see
|
|
* https://pro.ant.design/docs/deploy
|
|
*/
|
|
|
|
//线上
|
|
const serverApi = 'http://localhost:8100';
|
|
// const serverApi = 'http://192.168.3.128:8100';
|
|
|
|
|
|
export default {
|
|
'/manager': {target: serverApi, changeOrigin: true, pathRewrite: {'^': ''}},
|
|
'/tools': {target: serverApi, changeOrigin: true, pathRewrite: {'^': ''}},
|
|
'/ops': {target: serverApi, changeOrigin: true, pathRewrite: {'^': ''}},
|
|
'/auth': {target: serverApi, changeOrigin: true, pathRewrite: {'^': ''}},
|
|
'/organ': {target: serverApi, changeOrigin: true, pathRewrite: {'^': ''}},
|
|
'/common': {target: serverApi, changeOrigin: true, pathRewrite: {'^': ''}},
|
|
};
|