You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
434 B
9 lines
434 B
const VUE_APP_PLATFORM = process.env.VUE_APP_PLATFORM;
|
|
// localIp = false
|
|
module.exports = {
|
|
H5_API: VUE_APP_PLATFORM === 'h5' ? '/api' : '',//h5代理
|
|
WX_API: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.36:48080/',//非代理地址
|
|
TEMP_HOST: VUE_APP_PLATFORM === 'h5' ? '' : 'http://192.168.1.39:48082/',
|
|
httpPrefix: 'admin-api/',
|
|
imgUrl: 'http://jxtemp.oss-cn-hangzhou.aliyuncs.com/defaultImages/admin/bigImg/'
|
|
};
|