settings.js 857 B

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