12345678910111213141516171819202122232425262728 |
- import { ProLayoutProps } from '@ant-design/pro-components';
- const Settings: ProLayoutProps & {
- pwa?: boolean;
- logo?: string;
- } = {
- navTheme: 'light',
-
- colorPrimary: '#1890ff',
- layout: 'mix',
- contentWidth: 'Fluid',
- fixedHeader: false,
- fixSiderbar: true,
- colorWeak: false,
- title: '钉钉消息推送管理后台',
- pwa: true,
- logo: './logo.svg',
- iconfontUrl: '',
- token: {
-
-
- },
- };
- export default Settings;
|