25 lines
440 B
TypeScript
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;
|