config.js 297 Bytes
const host = window.location.host;
let domainPrefix;

if (host == '172.16.61.48' || host = '172.16.61.49') {
  domainPrefix = 'http://172.16.61.48/admin-server';
}  else {
  // 其他情况的默认值
  domainPrefix = '/admin-server';
}

export default {
  VUE_APP_DOMAIN_PREFIX: domainPrefix,
}