settings.js 616 B

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