Files
consumer-front/src/config/prod.js
T

21 lines
535 B
JavaScript
Raw Normal View History

/**
* 生产环境配置
*/
const prod = {
// 业务 API 地址(vms-api
2026-06-29 16:33:47 +08:00
apiBaseUrl: 'http://101.200.86.98:4000',
// 网关地址(vms-gateway)— 用户授权、短信等接口走网关
2026-06-29 16:33:47 +08:00
apiGatewayUrl: 'https://gateway.arklinksmart.cn',
// 授权回调地址(支付宝/微信 OAuth redirect_uri
2026-06-29 16:33:47 +08:00
authRedirectUri: 'https://gateway.arklinksmart.cn/api/v1/user/auth/callback',
// 生产环境 Token 从登录流程获取,此处为空
bearerToken: '',
enableRequestLog: false,
};
export default prod;