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