26 lines
460 B
TypeScript
26 lines
460 B
TypeScript
import type { ProLayoutProps } from '@ant-design/pro-components';
|
|
/**
|
|
* @name
|
|
*/
|
|
// @ts-ignore
|
|
const Settings: ProLayoutProps & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
} = {
|
|
navTheme: 'realDark',
|
|
// 拂晓蓝
|
|
colorPrimary: '#2F54EB',
|
|
layout: 'side',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
// colorWeak: false,
|
|
title: 'AI Pipeline',
|
|
pwa: true,
|
|
logo: false,
|
|
iconfontUrl: '',
|
|
token: {},
|
|
};
|
|
|
|
export default Settings;
|