You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
330 B
JavaScript

let baseUrl = null;
if (process.env.NODE_ENV === 'production') {
// 生产环境代码
// baseUrl = 'http://huaerda-api.24yt.com';
baseUrl = 'http://106.227.91.181:9081/api';
} else {
// 非生产环境代码
baseUrl = 'http://192.168.1.18:9020';
}
const config = {
baseUrl
}
// 应用全局配置
module.exports = config