-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathsettings.ts
24 lines (22 loc) · 845 Bytes
/
settings.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
}
// You can customize below settings :)
const settings: ISettings = {
title: 'Gin Web',
showSettings: true,
showTagsView: true,
fixedHeader: false,
showSidebarLogo: false,
errorLog: ['production'],
sidebarTextTheme: true,
devServerPort: 8888
}
export default settings