👨🏻‍💻👩🏻‍💻 Use Ant Design like a Pro!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
468 B

import { Settings as ProSettings } from '@ant-design/pro-layout';
type DefaultSettings = Partial<ProSettings> & {
pwa: boolean;
};
const proSettings: DefaultSettings = {
navTheme: 'dark',
// 拂晓蓝
primaryColor: '#1890ff',
layout: 'side',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
colorWeak: false,
title: 'Ant Design Pro',
pwa: false,
iconfontUrl: '',
};
export type { DefaultSettings };
export default proSettings;