prod.env.js 543 B

12345678910111213141516171819
  1. 'use strict'
  2. module.exports = {
  3. NODE_ENV: '"production"',
  4. BASE_URL: {
  5. // 前端地址
  6. web: {
  7. 'trade-app': '"https://saas.usoftchina.com/trade"',
  8. 'make-app': '"https://saas.usoftchina.com/make"'
  9. },
  10. // 移动端
  11. mobile: '"https://saas-mobile.usoftchina.com"',
  12. // 后端接口网关
  13. api: '"https://saas-api.usoftchina.com"',
  14. // 账户中心接口
  15. sso: '"http://sso.ubtob.com"',
  16. // 账户中心退出
  17. ssoLogout: '"https://sso2.usoftchina.com/loginOut.html?returnUrl={RETURN_URL}"'
  18. }
  19. }