defaultSettings.ts 492 B

123456789101112131415161718192021222324
  1. import { Settings as LayoutSettings } from '@ant-design/pro-layout';
  2. const Settings: LayoutSettings & {
  3. pwa?: boolean;
  4. logo?: string;
  5. } = {
  6. navTheme: 'light',
  7. // 拂晓蓝
  8. // primaryColor: '#1890ff',
  9. // 极光绿
  10. primaryColor: '#1d39c4',
  11. layout: 'mix',
  12. contentWidth: 'Fluid',
  13. splitMenus: true,
  14. fixedHeader: false,
  15. fixSiderbar: true,
  16. colorWeak: false,
  17. title: '',
  18. pwa: false,
  19. logo: '/logo.svg',
  20. iconfontUrl: '/icons/iconfont.js',
  21. };
  22. export default Settings;