blob: 879b5554c43a59db9dba92195bebce0c2d47655c [file] [log] [blame]
let config = {}
if (process.env.NODE_ENV === 'development') {
// 开发环境
config = {
// #ifdef H5
base_api: "/api", //测试地址
// base_api: "http://172.28.43.23:8089/portal/mobileapi",//本地地址
// #endif
// #ifndef H5
base_api: 'http://yy.dlsmk.cn:8080/portal/mobileapi',
base_api: 'https://yy.dlsmk.cn/portal/mobileapi',
base_api: "http://172.28.43.23:8089/portal/mobileapi",//本地地址
// #endif
}
} else {
// 生产环境
config = {
base_api: 'https://yy.dlsmk.cn/portal/mobileapi',
}
}
module.exports = config