defaultSettings.ts 509 B

123456789101112131415161718192021222324
  1. import { Settings as LayoutSettings } from '@ant-design/pro-components';
  2. /**
  3. * @name
  4. */
  5. const Settings: LayoutSettings & {
  6. pwa?: boolean;
  7. logo?: string;
  8. } = {
  9. navTheme: 'light',
  10. // 拂晓蓝
  11. colorPrimary: '#1890ff',
  12. layout: 'mix',
  13. contentWidth: 'Fluid',
  14. fixedHeader: false,
  15. fixSiderbar: true,
  16. colorWeak: false,
  17. title: '快应用管理后台',
  18. pwa: false,
  19. logo: 'https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg',
  20. iconfontUrl: '',
  21. };
  22. export default Settings;