settings.js 898 B

12345678910111213141516171819202122232425262728293031323334353637
  1. module.exports = {
  2. title: "OA 管理平台",
  3. logo: "https://news-info.ks3-cn-beijing.ksyuncs.com/03/1679367326340.png",
  4. isLdap: false,
  5. /**
  6. * @type {boolean} true | false
  7. * @description Whether show the settings right-panel
  8. */
  9. showSettings: false,
  10. /**
  11. * @type {boolean} true | false
  12. * @description Whether need tagsView
  13. */
  14. tagsView: true,
  15. /**
  16. * @type {boolean} true | false
  17. * @description Whether fix the header
  18. */
  19. fixedHeader: true,
  20. /**
  21. * @type {boolean} true | false
  22. * @description Whether show the logo in sidebar
  23. */
  24. sidebarLogo: true,
  25. /**
  26. * @type {string | array} 'production' | ['production', 'development']
  27. * @description Need show err logs component.
  28. * The default is only used in the production env
  29. * If you want to also use it in dev, you can pass ['production', 'development']
  30. */
  31. errorLog: "production",
  32. };