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.
 
 
 

16 lines
374 B

  1. /**
  2. * env文件里配置自定义运行菜单每一个js代表一个域名
  3. */
  4. const path = process.env.ENV_PATH == undefined ? require('../env/dev.js') : require(process.env.ENV_PATH)
  5. const baseUrl = path.baseUrl
  6. const host = baseUrl; // 测试站
  7. const iMServiceHost = 'https://im.quhouse.com/'; //IM的后端地址正式
  8. export {
  9. baseUrl,
  10. host,
  11. iMServiceHost
  12. }