defaultSettings.ts 473 B

1234567891011121314151617181920212223
  1. import { Settings as LayoutSettings } from '@ant-design/pro-components';
  2. const Settings: LayoutSettings & {
  3. pwa?: boolean;
  4. logo?: string;
  5. } = {
  6. navTheme: 'light',
  7. // 拂晓蓝
  8. primaryColor: '#1890ff',
  9. layout: 'mix',
  10. contentWidth: 'Fluid',
  11. fixedHeader: false,
  12. fixSiderbar: true,
  13. colorWeak: false,
  14. title: '高潜咨询|助力中国高潜企业加速发展',
  15. pwa: false,
  16. iconfontUrl: '',
  17. menu: {
  18. locale: false
  19. }
  20. };
  21. export default Settings;