-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdoczrc.js
38 lines (37 loc) · 857 Bytes
/
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
export default {
title: 'MojiScript',
// dest: 'docs',
base: '/',
codeSandbox: false,
hashRouter: true,
htmlContext: {
head: {
raw: `
<style>
.scrollbar-container {
max-height: unset!important;
}
</style>
`,
links: [ {
rel: 'stylesheet',
href: 'https://codemirror.net/theme/dracula.css'
} ]
},
body: {
raw: `
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-225695-16"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-225695-16');
</script>
`
}
},
themeConfig: {
codemirrorTheme: 'dracula'
}
}