mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-24 02:03:18 +00:00
23 lines
538 B
TypeScript
23 lines
538 B
TypeScript
import { Settings as LayoutSettings } from '@ant-design/pro-layout';
|
|
|
|
import themeSettings from './themeSettings';
|
|
|
|
const Settings: LayoutSettings & {
|
|
pwa?: boolean;
|
|
logo?: string;
|
|
} = {
|
|
navTheme: 'dark',
|
|
primaryColor: themeSettings.primaryColor, // 全局主色
|
|
layout: 'mix',
|
|
contentWidth: 'Fluid',
|
|
fixedHeader: false,
|
|
fixSiderbar: true,
|
|
colorWeak: false,
|
|
title: 'KubeVela',
|
|
pwa: false,
|
|
logo: 'https://gw.alipayobjects.com/zos/rmsportal/KDpgvguMpGfqaHPjicRK.svg',
|
|
iconfontUrl: '',
|
|
};
|
|
|
|
export default Settings;
|