22 lines
456 B
TypeScript
22 lines
456 B
TypeScript
import { Settings as LayoutSettings } from '@ant-design/pro-layout';
|
|
|
|
const Settings: LayoutSettings & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
} = {
|
|
navTheme: 'light',
|
|
// 拂晓蓝
|
|
primaryColor: '#1890ff',
|
|
layout: 'mix',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
title: "Loading...",
|
|
pwa: false,
|
|
logo: 'https://cloud.helloworldnet.com/logo-white.svg',
|
|
iconfontUrl: '',
|
|
};
|
|
|
|
export default Settings;
|