This commit is contained in:
2026-04-24 20:30:52 +08:00
commit 704bc34625
152 changed files with 45612 additions and 0 deletions

24
config/defaultSettings.ts Normal file
View File

@@ -0,0 +1,24 @@
import type { ProLayoutProps } from '@ant-design/pro-components';
/**
* @name
*/
const Settings: ProLayoutProps & {
pwa?: boolean;
logo?: string;
} = {
navTheme: 'light',
colorPrimary: '#1890ff',
layout: 'mix',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
footerRender: false,
colorWeak: false,
title: 'RiskGuard',
pwa: false,
logo: '/logo.svg',
iconfontUrl: '',
};
export default Settings;