ai_pipeline_web/config/defaultSettings.ts

26 lines
457 B
TypeScript

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