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.
27 lines
525 B
27 lines
525 B
import { Settings as ProSettings } from '@ant-design/pro-layout';
|
|
|
|
type DefaultSettings = ProSettings & {
|
|
pwa: boolean;
|
|
};
|
|
|
|
const proSettings: DefaultSettings = {
|
|
navTheme: 'dark',
|
|
// 拂晓蓝
|
|
primaryColor: '#1890ff',
|
|
layout: 'side',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
menu: {
|
|
locale: true,
|
|
},
|
|
title: '大数据监测平台',
|
|
pwa: false,
|
|
iconfontUrl: '',
|
|
};
|
|
|
|
export type { DefaultSettings };
|
|
|
|
export default proSettings;
|