blob: e6285be749684660bcf60855eae1c4c0963c52e4 [file] [log] [blame]
guangchao.xu1bc4ccc2021-01-19 17:09:26 +08001let config = {}
2
3if (process.env.NODE_ENV === 'development') {
4 // 开发环境
5 config = {
6 // #ifdef H5
7 base_api: "/api", //测试地址
8 // #endif
9 // base_api: "http://172.28.43.20:8089/portal/mobileapi",//本地地址
10 // #ifndef H5
11 base_api: 'http://yy.dlsmk.cn:8080/portal/mobileapi',
12 // #endif
13 }
14
15} else {
16 // 生产环境
17 config = {
18 base_api: 'https://yy.dlsmk.cn/portal/mobileapi'
19 }
20}
21
22export default config