defaultSettings.ts 422B

123456789101112131415161718192021
  1. import { Settings as LayoutSettings } from '@ant-design/pro-components';
  2. const Settings: LayoutSettings & {
  3. pwa?: boolean;
  4. logo?: string;
  5. } = {
  6. navTheme: 'dark',
  7. // 拂晓蓝
  8. primaryColor: '#1890ff',
  9. layout: 'side',
  10. contentWidth: 'Fluid',
  11. fixedHeader: false,
  12. fixSiderbar: true,
  13. colorWeak: false,
  14. title: '军供',
  15. pwa: false,
  16. logo: '/w2/logo.png',
  17. iconfontUrl: '',
  18. };
  19. export default Settings;