config.js 943 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. // 应用全局配置
  2. module.exports = {
  3. // baseUrl: 'https://vue.ruoyi.vip/prod-api',
  4. baseUrl: 'https://erp-server.huaxiazhizao.com',
  5. devServer: {
  6. disableHostCheck: true,
  7. // historyApiFallback: true,
  8. // allowedHosts: "all",
  9. },
  10. // 单点登录
  11. VITE_SSO_LOGIN:true,
  12. // baseUrl: 'http://localhost:8080',
  13. // baseUrl: 'http://erp-test.huabaosmart.com:8082',
  14. // if (window.location.host.indexOf('localhost') > -1) {
  15. // baseUrl: 'http://localhost:8083',
  16. // }else {
  17. // baseUrl: 'https://tools-server.huaxiazhizao.com',
  18. // }
  19. // 应用信息
  20. appInfo: {
  21. // 应用名称
  22. name: 'ruoyi-app',
  23. // 应用版本
  24. version: '1.1.0',
  25. // 应用logo
  26. logo: '/static/logo.png',
  27. // 官方网站
  28. site_url: 'http://ruoyi.vip',
  29. // 政策协议
  30. agreements: [{
  31. title: '隐私政策',
  32. url: 'https://ruoyi.vip/protocol.html'
  33. },
  34. {
  35. title: '用户服务协议',
  36. url: 'https://ruoyi.vip/protocol.html'
  37. }
  38. ]
  39. }
  40. }