-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
52 lines (51 loc) · 1.53 KB
/
nuxt.config.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
import theme from 'grey-docs'
export default theme({
components: true,
content: {
liveEdit: false
},
docs: {
primaryColor: '#64748b'
},
head: {
title: 'Onboarding by Grey Software | Democratizing Software Education!',
meta: [
{
name: 'og:title',
content: 'Onboarding by Grey Software | Democratizing Software Education!'
},
{
name: 'og:description',
content: 'A practical intro to open source software development for new team members or curious explorers!'
},
{
name: 'og:image',
content: '/preview.png'
},
{
name: 'twitter:card',
content: 'summary_large_image'
},
{
name: 'twitter:title',
content: 'Onboarding by Grey Software | Democratizing Software Education!'
},
{
name: 'twitter:description',
content: 'A practical intro to open source software development for new team members or curious explorers!'
},
{
name: 'twitter:image',
content: '/preview.png'
},
],
script: [
{
src: 'https://plausible.io/js/plausible.js',
async: true,
defer: true,
'data-domain': 'onboarding.grey.software',
},
]
}
})