12345678910111213141516171819 |
- 'use strict'
- module.exports = {
- NODE_ENV: '"production"',
- BASE_URL: {
- // 前端地址
- web: {
- 'trade-app': '"https://saas.usoftchina.com/trade"',
- 'make-app': '"https://saas.usoftchina.com/make"'
- },
- // 移动端
- mobile: '"https://saas-mobile.usoftchina.com"',
- // 后端接口网关
- api: '"https://saas-api.usoftchina.com"',
- // 账户中心接口
- sso: '"http://sso.ubtob.com"',
- // 账户中心退出
- ssoLogout: '"https://sso2.usoftchina.com/loginOut.html?returnUrl={RETURN_URL}"'
- }
- }
|