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.
22 lines
481 B
22 lines
481 B
3 years ago
|
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;
|