defaultSettings.ts 536 B

1234567891011121314151617181920212223242526
  1. import { ProLayoutProps } from '@ant-design/pro-components';
  2. /**
  3. * @name
  4. */
  5. const Settings: ProLayoutProps & {
  6. pwa?: boolean;
  7. logo?: string;
  8. } = {
  9. navTheme: 'light',
  10. // 拂晓蓝
  11. colorPrimary: '#2f54eb',
  12. // colorPrimary: '#722ed1',
  13. layout: 'mix',
  14. // contentWidth: 'Fluid',
  15. contentWidth: 'Fixed',
  16. fixedHeader: false,
  17. fixSiderbar: true,
  18. colorWeak: false,
  19. siderWidth: 208,
  20. pwa: true,
  21. logo: '/images/logo.svg',
  22. iconfontUrl: '/css/iconfont.js',
  23. };
  24. export default Settings;