defaultSettings.ts 473 B

1234567891011121314151617181920212223242526
  1. import type { ProLayoutProps } from '@ant-design/pro-components';
  2. /**
  3. * @name
  4. */
  5. const Settings: ProLayoutProps & {
  6. pwa?: boolean;
  7. logo?: boolean;
  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: true,
  19. logo: false,
  20. iconfontUrl: '',
  21. token: {},
  22. siderWidth: 200,
  23. };
  24. export default Settings;