-
Notifications
You must be signed in to change notification settings - Fork 6
/
doczrc.js
70 lines (67 loc) · 1.46 KB
/
doczrc.js
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import path from 'path'
import pkg from './package.json';
const libName = pkg.name;
export default {
src: './src/docs',
dest: './demo',
title: libName,
port: 8888,
hashRouter: true,
base: `/${libName}/`,
menu: [
"Getting started",
{
name: 'Examples',
menu: [
'event',
'ref',
'on & off',
'multiple events',
'preventDefault'
]
}
],
description: pkg.description,
modifyBundlerConfig: config => {
config.resolve.alias = {
...config.resolve.alias,
[libName]: path.join(__dirname, `/src/index.js`)
}
return config;
},
htmlContext: {
head: {
scripts: [
{
async: 'async',
src: 'https://www.googletagmanager.com/gtag/js?id=UA-127716054-1'
}
],
raw: `<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-127716054-1');
</script>`,
links: [{
rel: 'stylesheet',
href: '//codemirror.net/theme/dracula.css'
}]
}
},
themeConfig: {
mode: 'light',
codemirrorTheme: 'dracula',
styles: {
body: {
fontFamily: "'Source Sans Pro', Helvetica, sans-serif",
fontSize: 16,
lineHeight: 1.6,
},
container: {
width: '100%',
padding: ['20px 40px'],
},
}
},
}