settings.js 956 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. * @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. themeClass: 'blue',
  30. layoutType: 'classic',
  31. slideClass: 'dark',
  32. tagsIcon: false,
  33. showLanguage: true,
  34. showSearch: true,
  35. useCache: true,
  36. errorLog: 'production'
  37. }