settings.js 911 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. module.exports = {
  2. title: '',
  3. /**
  4. * @type {boolean} true | false
  5. * @description Whether show the settings right-panel
  6. */
  7. showSettings: false,
  8. /**
  9. * @type {boolean} true | false
  10. * @description Whether need tagsView
  11. */
  12. tagsView: true,
  13. /**
  14. * @type {boolean} true | false
  15. * @description Whether fix the header
  16. */
  17. fixedHeader: false,
  18. /**
  19. * @type {boolean} true | false
  20. * @description Whether show the logo in sidebar
  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. /**
  31. * @type boolean
  32. *
  33. * @description 左侧菜单栏是否只展开一个子菜单
  34. */
  35. uniqueOpened: true
  36. }