settings.js 1020 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. module.exports = {
  2. urls: `http://192.168.101.245:8056`,
  3. // urls: `http://10.90.90.53:8056`,
  4. // 10.90.90.52 192.168.101.245
  5. // 10.90.90.53
  6. // http://192.168.9.240:5010
  7. // http://192.168.1.66:8056
  8. // urls:`http://192.168.9.240:5010`,
  9. /**
  10. * 侧边栏主题 深色主题theme-dark,浅色主题theme-light
  11. */
  12. sideTheme: 'theme-light',
  13. /**
  14. * 是否系统布局配置
  15. */
  16. showSettings: false,
  17. /**
  18. * 是否显示顶部导航
  19. */
  20. topNav: false,
  21. /**
  22. * 是否显示 tagsView
  23. */
  24. tagsView: false,
  25. /**
  26. * 是否固定头部
  27. */
  28. fixedHeader: false,
  29. /**
  30. * 是否显示logo
  31. */
  32. sidebarLogo: false,
  33. /**
  34. * 是否显示动态标题
  35. */
  36. dynamicTitle: false,
  37. /**
  38. * @type {string | array} 'production' | ['production', 'development']
  39. * @description Need show err logs component.
  40. * The default is only used in the production env
  41. * If you want to also use it in dev, you can pass ['production', 'development']
  42. */
  43. errorLog: 'production'
  44. }