proxy.conf.js 282 B

1234567891011121314151617181920212223
  1. //物流管理
  2. //系统设置模块
  3. const sysConfig = [
  4. '/Manage',
  5. '/Attached'
  6. // '/SysUser',
  7. // '/Login',
  8. // '/Navigation'
  9. ]
  10. const PROXY_CONFIG = [
  11. {
  12. context: [
  13. ...sysConfig
  14. ],
  15. target: "http://localhost:51267",
  16. secure: false
  17. }
  18. ]
  19. module.exports = PROXY_CONFIG;