123456789101112131415161718192021 |
- import { Settings as LayoutSettings } from '@ant-design/pro-layout';
- const Settings: LayoutSettings & {
- pwa?: boolean;
- logo?: string;
- } = {
- navTheme: 'light',
- // 拂晓蓝
- primaryColor: '#1890ff',
- layout: 'mix',
- contentWidth: 'Fluid',
- fixedHeader: false,
- fixSiderbar: true,
- colorWeak: false,
- title: 'Ant Design Pro',
- pwa: false,
- logo: 'https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg',
- iconfontUrl: '',
- };
- export default Settings;
|