settings.js 873 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. module.exports = {
  2. // 路由前缀
  3. roterPre: '/admin',
  4. // 路由标题
  5. title: '幸福保',
  6. /**
  7. * @type {boolean} true | false
  8. * @description Whether show the settings right-panel
  9. */
  10. showSettings: true,
  11. /**
  12. * @type {boolean} true | false
  13. * @description Whether need tagsView
  14. */
  15. tagsView: true,
  16. /**
  17. * @type {boolean} true | false
  18. * @description Whether fix the header
  19. */
  20. fixedHeader: false,
  21. /**
  22. * @type {boolean} true | false
  23. * @description Whether show the logo in sidebar
  24. */
  25. sidebarLogo: true,
  26. indexfull: 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. }