1234567891011121314151617181920212223 |
- import { Settings as LayoutSettings } from '@ant-design/pro-components';
- const Settings: LayoutSettings & {
- pwa?: boolean;
- logo?: string;
- } = {
- navTheme: 'light',
- // 拂晓蓝
- primaryColor: '#1890ff',
- layout: 'mix',
- contentWidth: 'Fluid',
- fixedHeader: false,
- fixSiderbar: true,
- colorWeak: false,
- title: '高潜咨询|助力中国高潜企业加速发展',
- pwa: false,
- iconfontUrl: '',
- menu: {
- locale: false
- }
- };
- export default Settings;
|