12345678910111213141516171819202122 |
- import { Settings as LayoutSettings } from '@ant-design/pro-layout'
- const Settings: LayoutSettings & {
- pwa?: boolean
- logo?: string
- } = {
- navTheme: 'dark',
- // 拂晓蓝
- primaryColor: '#886ab5',
- layout: 'side',
- contentWidth: 'Fluid',
- fixedHeader: false,
- fixSiderbar: true,
- colorWeak: false,
- title: 'CLD.V2',
- pwa: false,
- logo: '/logo.svg',
- iconfontUrl: '//at.alicdn.com/t/font_2276974_nbe38935rtf.js',
- footerRender: false
- }
- export default Settings
|