-
Notifications
You must be signed in to change notification settings - Fork 0
/
gridsome.config.js
72 lines (72 loc) · 1.52 KB
/
gridsome.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
module.exports = {
siteName: 'MelvinLoos.nl',
siteDescription: 'All about full stack developer Melvin Loos. Specialized in APIs, integrations, business process optimalisations & automation.',
siteUrl: 'https://www.melvinloos.nl',
plugins: [
{
use: '@gridsome/source-filesystem',
options: {
path: 'blog/**/*.md',
typeName: 'BlogPost',
resolveAbsolutePaths: true,
remark: {
externalLinksTarget: '_blank',
externalLinksRel: ['nofollow', 'noopener', 'noreferrer'],
},
},
},
{
use: '@gridsome/plugin-sitemap',
options: {
cacheTime: 600000,
exclude: ['/success/'],
config: {
'/blog/*': {
changefreq: 'weekly',
priority: 0.5
}
}
}
},
{
use: 'gridsome-plugin-webpack-size',
options: {
development: true,
writeFile: true
}
},
{
use: "gridsome-plugin-disqus"
}
],
transformers: {
remark: {
plugins: [
// Add remark-mermaid plugin
['gridsome-plugin-remark-mermaid', {
theme: 'dark',
viewport: {
width: 600,
height: 600
}
}],
['@noxify/gridsome-remark-classes', {
blockquote: 'blockquote pl-4 bg-light'
}]
],
config: {
commonmark: true
}
}
},
css: {
loaderOptions: {
scss: {
}
}
},
devServer: {
host: '0.0.0.0',
port: 8080
}
}