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.
10 lines
546 B
10 lines
546 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.43:8318/',//非代理地址
|
|
// WX_API: VUE_APP_PLATFORM === 'h5' ? '/' : 'http://work.lyjppt.com:8099/',// http://192.168.1.43:8318/ http://123.6.232.54:8099/非代理地址
|
|
website: 'http://192.168.1.37',
|
|
httpPrefix: 'app-api/',
|
|
imgUrl: 'https://jiangxijiakao-1.oss-cn-hangzhou.aliyuncs.com/defaultImages/app/bigImg/'
|
|
};
|