Files
fe_portal_frontend/config/defaultSettings.ts

30 lines
568 B
TypeScript
Raw Normal View History

2025-06-16 09:25:19 +08:00
import { Settings as ProSettings } from '@ant-design/pro-layout';
type DefaultSettings = ProSettings & {
pwa: boolean;
headingColor:string;
textColor:string;
2025-06-16 09:25:19 +08:00
};
const proSettings: DefaultSettings = {
navTheme: 'light',
primaryColor: 'rgb(0,79,142)',
headingColor:"#000",
textColor:"#000",
2025-06-16 09:25:19 +08:00
layout: 'side',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
colorWeak: false,
menu: {
locale: true,
},
title: '中远海运',
2025-06-16 09:25:19 +08:00
pwa: false,
iconfontUrl: '',
};
export type { DefaultSettings };
export default proSettings;