You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
937 B
26 lines
937 B
interface ISettings {
|
|
title: string // Overrides the default title
|
|
showSettings: boolean // Controls settings panel display
|
|
showTagsView: boolean // Controls tagsview display
|
|
showSidebarLogo: boolean // Controls siderbar logo display
|
|
fixedHeader: boolean // If true, will fix the header component
|
|
errorLog: string[] // The env to enable the errorlog component, default 'production' only
|
|
sidebarTextTheme: boolean // If true, will change active text color for sidebar based on theme
|
|
devServerPort: number // Port number for webpack-dev-server
|
|
mockServerPort: number // Port number for mock server
|
|
}
|
|
|
|
// You can customize below settings :)
|
|
const settings: ISettings = {
|
|
title: '后台管理平台',
|
|
showSettings: true,
|
|
showTagsView: false,
|
|
fixedHeader: false,
|
|
showSidebarLogo: false,
|
|
errorLog: ['production'],
|
|
sidebarTextTheme: true,
|
|
devServerPort: 9527,
|
|
mockServerPort: 9528
|
|
}
|
|
|
|
export default settings
|
|
|