settings.js 799 B

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