settings.js 601 B

12345678910111213141516171819202122232425262728293031323334
  1. module.exports={
  2. title:'SASS',
  3. /**
  4. * 是否系统布局配置
  5. */
  6. showSettings:false,
  7. /**
  8. * 是否显示TagView
  9. */
  10. tagsView:false,
  11. /**
  12. * 是否固定头部
  13. */
  14. fixedHeader:false,
  15. /**
  16. * 是否展示LOGO
  17. */
  18. sidebarLogo:true,
  19. /**
  20. * @type {String|array} 'production'|['production','development']
  21. * @description Need show err logs component.
  22. * The default is only used in the production env
  23. * If you want to also use it in dev,you can pass ['production','development']
  24. */
  25. errorLog:'production'
  26. }