Blame view
src/settings.js
1005 Bytes
|
80a28914e
|
1 |
module.exports = {
|
|
50760eab9
|
2 |
title: 'Let\'s fuck this workd', |
|
80a28914e
|
3 |
|
|
d7d9c38c2
|
4 5 6 7 8 9 10 11 12 13 14 |
/**
* @type {boolean} true | false
* @description Whether show the settings right-panel
*/
showSettings: true,
/**
* @type {boolean} true | false
* @description Whether need tagsView
*/
tagsView: true,
|
|
80a28914e
|
15 16 17 18 19 |
/**
* @type {boolean} true | false
* @description Whether fix the header
*/
|
|
50760eab9
|
20 |
fixedHeader: true, |
|
80a28914e
|
21 22 23 24 25 |
/**
* @type {boolean} true | false
* @description Whether show the logo in sidebar
*/
|
|
50760eab9
|
26 |
sidebarLogo: true, |
|
d7d9c38c2
|
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
/**
* @type {boolean} true | false
* @description Whether support pinyin search in headerSearch
* Bundle size minified 47.3kb,minified + gzipped 63kb
*/
supportPinyinSearch: true,
/**
* @type {string | array} 'production' | ['production', 'development']
* @description Need show err logs component.
* The default is only used in the production env
* If you want to also use it in dev, you can pass ['production', 'development']
*/
errorLog: 'production'
|
|
80a28914e
|
42 |
} |