settings.js 731 B

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