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.
7 lines
357 B
7 lines
357 B
const VUE_APP_PLATFORM = process.env.VUE_APP_PLATFORM;
|
|
module.exports = {
|
|
APP_API: VUE_APP_PLATFORM === 'h5' ? '/api' : 'http://121.41.97.244:8090',
|
|
APP_HOST: VUE_APP_PLATFORM === 'h5' ? '' : 'https://www.jaxc.cn/api',
|
|
TEMP_HOST: VUE_APP_PLATFORM === 'h5' ? '' : 'http://121.41.97.244:8090 https://www.jaxc.cn/api',
|
|
//是否启用人脸识别
|
|
};
|