defaultSettings.ts 435 B

12345678910111213141516171819202122
  1. import { Settings as LayoutSettings } from '@ant-design/pro-layout';
  2. const Settings: LayoutSettings & {
  3. pwa?: boolean;
  4. logo?: string;
  5. } = {
  6. navTheme: 'dark',
  7. // 拂晓蓝
  8. primaryColor: '#886ab5',
  9. layout: 'mix',
  10. contentWidth: 'Fluid',
  11. fixedHeader: false,
  12. fixSiderbar: true,
  13. colorWeak: false,
  14. title: 'CLD.V2',
  15. pwa: false,
  16. logo: '/logo.svg',
  17. iconfontUrl: '',
  18. footerRender: false
  19. };
  20. export default Settings;