You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
457 B
TypeScript
24 lines
457 B
TypeScript
10 months ago
|
import { Settings as ProSettings } from '@ant-design/pro-layout';
|
||
|
|
||
|
type DefaultSettings = Partial<ProSettings> & {
|
||
|
pwa: boolean;
|
||
|
};
|
||
|
|
||
|
const proSettings: DefaultSettings = {
|
||
|
navTheme: 'dark',
|
||
|
// 拂晓蓝
|
||
|
primaryColor: '#3552bb',
|
||
|
layout: 'side',
|
||
|
contentWidth: 'Fluid',
|
||
|
fixedHeader: false,
|
||
|
fixSiderbar: true,
|
||
|
colorWeak: false,
|
||
|
title: false,
|
||
|
pwa: false,
|
||
|
iconfontUrl: '',
|
||
|
};
|
||
|
|
||
|
export type { DefaultSettings };
|
||
|
|
||
|
export default proSettings;
|