123456789101112131415161718 |
- window.isTest = true; //测试环境true 正式环境false
- window._config = window.isTest
- ? {
- // 测试环境
- baseUrl: "//xhwebapitest.xhkjedu.com/",
- showImageUrl: "//xhwebstatictest.xhkjedu.com/",
- axiosApiTimeout: 20, // 接口超时时间 单位秒
- axiosFileTimeout: 30, // 上传文件超时时间 单位秒
- versionname: "测试 v1.0.0",
- }
- : {
- // 正式环境
- baseUrl: "//xhwebapi.xhkjedu.com/",
- showImageUrl: "//xhwebstatic.xhkjedu.com/",
- axiosApiTimeout: 20, // 接口超时时间 单位秒
- axiosFileTimeout: 30, // 上传文件超时时间 单位秒
- versionname: "测试 v1.0.0",
- };
|