Blame view
src/settings.js
1005 Bytes
80a28914e init |
1 |
module.exports = { |
50760eab9 auto commit the c... |
2 |
title: 'Let\'s fuck this workd', |
80a28914e init |
3 |
|
d7d9c38c2 auto commit the c... |
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 init |
15 16 17 18 19 |
/** * @type {boolean} true | false * @description Whether fix the header */ |
50760eab9 auto commit the c... |
20 |
fixedHeader: true, |
80a28914e init |
21 22 23 24 25 |
/** * @type {boolean} true | false * @description Whether show the logo in sidebar */ |
50760eab9 auto commit the c... |
26 |
sidebarLogo: true, |
d7d9c38c2 auto commit the c... |
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 init |
42 |
} |