-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoczrc.js
More file actions
41 lines (39 loc) · 752 Bytes
/
doczrc.js
File metadata and controls
41 lines (39 loc) · 752 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
35
36
37
38
39
40
41
import { padding } from "polished";
export default {
title: 'React components',
description: 'Oovui react components docs site',
src:'./docs-site',
dest: '/docs-dist',
indexHtml: './docs-site/index.html',
repository: 'https://github.com/oovui/react-components',
ordering: 'descending', //ascending
//base:"/"
//propsParser:false,
files: '**/*.{markdown,mdx}',
codeSandbox: false,
themeConfig: {
colors: {
primary: 'tomato',
},
styles: {
h1: {
fontSize: 26,
},
h2: {
fontSize: 20,
},
h3: {
fontSize: 18,
},
h4: {
fontSize: 16,
},
h5: {
fontSize: 14,
},
h6: {
fontSize: 14,
},
},
}
}