feat: init

This commit is contained in:
eric
2022-11-14 21:19:37 +08:00
parent a16cfb8187
commit 336c03e868
126 changed files with 7301 additions and 70 deletions

24
config/defaultSettings.ts Normal file
View File

@@ -0,0 +1,24 @@
import { Settings as LayoutSettings } from '@ant-design/pro-components';
/**
* @name
*/
const Settings: LayoutSettings & {
pwa?: boolean;
logo?: string;
} = {
navTheme: 'light',
// 拂晓蓝
colorPrimary: '#1890ff',
layout: 'mix',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
colorWeak: false,
title: 'Ant Design Pro',
pwa: false,
logo: 'https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg',
iconfontUrl: '',
};
export default Settings;