This commit is contained in:
Jane
2023-12-26 11:21:51 +08:00
commit 284713ed44
830 changed files with 158238 additions and 0 deletions

24
config/defaultSettings.ts Normal file
View File

@@ -0,0 +1,24 @@
import { Settings as LayoutSettings } from '@ant-design/pro-layout';
const Settings: LayoutSettings & {
pwa?: boolean;
logo?: string;
tabsLayout?: boolean;
} = {
navTheme: 'light',
headerTheme: 'light',
primaryColor: '#722ED1',
layout: 'top',
splitMenus: true,
contentWidth: 'Fluid',
fixedHeader: true,
fixSiderbar: true,
colorWeak: false,
title: 'Salpa',
pwa: false,
logo: 'https://gw.alipayobjects.com/zos/rmsportal/樽海鞘_图案.svg',
iconfontUrl: '',
tabsLayout: true,
};
export default Settings;