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

21 lines
548 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',
2026-07-02 19:04:08 +08:00
// 授权回调地址(微信 OAuth redirect_uri,必须 HTTPS,指向前端页面)
authRedirectUri: 'https://m.arklinksmart.cn/pages/auth/loading',
// 生产环境 Token 从登录流程获取,此处为空
bearerToken: '',
enableRequestLog: false,
};
export default prod;