123456789101112131415161718192021 |
- '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: '"https://ssorest.usoftchina.com"',
- // 账户中心
- accountCenter: '"https://sso2.usoftchina.com"',
- // 账户中心退出
- ssoLogout: '"https://ssorest.usoftchina.com/api/user/logout?appId=sp&targetUrl={RETURN_URL}"'
- }
- }
|