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