defaultConfig.js 868 B

12345678910111213141516171819202122232425
  1. // //正式环境
  2. // const productionUrl = 'https://wanbei.monvkeji.cn/'
  3. // // 测试环境
  4. // const testUrl = 'https://wanbei.monvkeji.cn/'
  5. // // 开发环境
  6. // const developUrl = 'http://192.168.10.166:7114/'
  7. // export default {
  8. // // 系统名称
  9. // name: "签约",
  10. // apiUrl: process.env.NODE_ENV !== 'production' ? testUrl : testUrl,
  11. // }
  12. //正式环境
  13. const productionUrl = 'https://wanbei.monvkeji.cn/'
  14. // 测试环境
  15. const testUrl = 'https://wanbei.monvkeji.cn/'
  16. // 开发环境
  17. // const developUrl = 'http://192.168.10.166:7114/'//余红奇
  18. // const developUrl = 'http://v56c9b8e.natappfree.cc/'//余红奇
  19. const developUrl = 'http://nd383294.natappfree.cc/'//余红奇
  20. // const developUrl = 'http://192.168.10.170:7114/'//陈果
  21. export default {
  22. // 系统名称
  23. name: "签约",
  24. apiUrl: process.env.NODE_ENV !== 'production' ? developUrl : testUrl,
  25. }