AI销管
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.
 
 
 
 

20 lines
457 B

  1. /**
  2. * env文件里配置自定义运行菜单每一个js代表一个域名
  3. */
  4. const base = process.env.ENV_PATH == undefined ? require('../env/dev.js') : require(process.env.ENV_PATH)
  5. // http.js使用
  6. const baseUrl = `${base}/autoSR/api`;
  7. // config 使用
  8. const host = `${base}/autoSR/api`;
  9. const hosts = `${base}/`;
  10. const iMServiceHost = 'https://im.quhouse.com/'; //IM的后端地址正式
  11. export {
  12. baseUrl,
  13. host,
  14. hosts,
  15. iMServiceHost,
  16. base
  17. }