hengmei-two/jsFile/config.js

32 lines
651 B
JavaScript
Raw Normal View History

2021-08-19 06:40:59 +00:00
const ENV = process.env.NODE_ENV;
2021-08-26 01:50:19 +00:00
console.log('当前环境', process.env.NODE_ENV)
2021-08-19 06:40:59 +00:00
const apiHub = {
//开发环境
development: {
2022-01-24 05:53:00 +00:00
// BASE_URL: `https://hengmei.scdxtc.cn/api/`,
BASE_URL: "https://hm.hmzfyy.cn/api/",
2021-08-19 06:40:59 +00:00
IMG_URL: "https://xx",
BASE_UPLOAD_URL: "",
},
//测试环境
test: {
BASE_URL: "https://xxx",
IMG_URL: "https://xxx",
BASE_UPLOAD_URL: "",
},
//生产环境
production: {
BASE_URL: "https://xx",
IMG_URL: "https://xx",
BASE_UPLOAD_URL: "",
}
}
// 导出配置
export default {
ENV: ENV,
...apiHub[ENV]
}