Files
ks-app-employment-service/packageCa/utilCa/config.js
2025-12-04 14:04:58 +08:00

14 lines
452 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

let baseUrl = ""
// #ifdef MP-WEIXIN
// 编译项目因为使用插件lime-echartechart文件过大需要非压缩代码方式编译不然会很慢发布的时候才压缩代码方式编译
if (wx.getAccountInfoSync().miniProgram.envVersion === 'develop') {
baseUrl = 'http://222.80.110.161:11111/career' // 开发环境
} else {
baseUrl = 'http://222.80.110.161:11111/career' // 生产环境
}
// #endif
export {
baseUrl
}