forked from mobxjs/mobx-react-docz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoczrc.js
More file actions
34 lines (33 loc) · 763 Bytes
/
doczrc.js
File metadata and controls
34 lines (33 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import doczPluginNetlify from 'docz-plugin-netlify'
export default {
title: 'MobX with React',
description: 'Make your components truly reactive with MobX',
src: 'content',
files: 'content/**/*.mdx',
typescript: true,
propsParser: false,
codeSandbox: false,
htmlContext: {
head: {
links: [
{
rel: 'stylesheet',
href: 'https://codemirror.net/theme/blackboard.css',
},
],
},
},
themeConfig: {
mode: 'dark',
codemirrorTheme: 'blackboard',
showPlaygroundEditor: false,
linesToScrollEditor: 50,
colors: {
codeColor: '#8DB6DE',
codeBg: '#0C1021',
blockquoteColor: '#8DB6DE',
blockquoteBg: '#0C1021',
},
},
plugins: [doczPluginNetlify()],
}