Files
alert/config/defaultSettings.ts
2026-04-24 20:30:52 +08:00

25 lines
440 B
TypeScript

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;