settings.js 843 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. module.exports = {
  2. title: "",
  3. /**
  4. * @type {boolean} true | false
  5. * @description Whether show the settings right-panel
  6. */
  7. showSettings: true,
  8. /**
  9. * 是否显示顶部导航
  10. */
  11. topNav: false,
  12. /**
  13. * @type {boolean} true | false
  14. * @description Whether need tagsView
  15. */
  16. tagsView: true,
  17. /**
  18. * @type {boolean} true | false
  19. * @description Whether fix the header
  20. */
  21. fixedHeader: true,
  22. /**
  23. * @type {boolean} true | false
  24. * @description Whether show the logo in sidebar
  25. */
  26. sidebarLogo: true,
  27. /**
  28. * @type {string | array} 'production' | ['production', 'development']
  29. * @description Need show err logs component.
  30. * The default is only used in the production env
  31. * If you want to also use it in dev, you can pass ['production', 'development']
  32. */
  33. errorLog: "production"
  34. };