Files
fe_portal_frontend/config/defaultSettings.ts

26 lines
479 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;
};
const proSettings: DefaultSettings = {
navTheme: 'light',
primaryColor: '#b30000',
layout: 'side',
contentWidth: 'Fluid',
fixedHeader: false,
fixSiderbar: true,
colorWeak: false,
menu: {
locale: true,
},
title: '招投标系统',
pwa: false,
iconfontUrl: '',
};
export type { DefaultSettings };
export default proSettings;