defaultSettings.ts 474 B

123456789101112131415161718192021222324
  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. layout: 'mix',
  13. contentWidth: 'Fluid',
  14. fixedHeader: false,
  15. fixSiderbar: true,
  16. colorWeak: false,
  17. siderWidth: 208,
  18. pwa: true,
  19. logo: '/images/logo.svg',
  20. iconfontUrl: '/css/iconfont.js',
  21. };
  22. export default Settings;