1234567891011121314151617181920212223 |
- //物流管理
- //系统设置模块
- const sysConfig = [
- '/Manage',
- '/Attached'
- // '/SysUser',
- // '/Login',
- // '/Navigation'
- ]
- const PROXY_CONFIG = [
- {
- context: [
- ...sysConfig
- ],
- target: "http://localhost:51267",
- secure: false
- }
- ]
- module.exports = PROXY_CONFIG;
|