Files
ks-app-employment-service/packageCa/utilCa/config.js

14 lines
440 B
JavaScript
Raw Normal View History

let baseUrl = ""
// #ifdef MP-WEIXIN
2025-11-07 15:24:44 +08:00
// 编译项目因为使用插件lime-echartechart文件过大需要非压缩代码方式编译不然会很慢发布的时候才压缩代码方式编译
if (wx.getAccountInfoSync().miniProgram.envVersion === 'develop') {
2025-11-28 13:55:54 +08:00
baseUrl = 'https://localhost:7026/career' // 开发环境
} else {
2025-11-28 13:55:54 +08:00
baseUrl = 'https://ksrs.51xuanxiao.com' // 生产环境
}
// #endif
export {
2025-11-20 18:37:15 +08:00
baseUrl
2025-11-07 19:01:00 +08:00
}