-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgridsome.config.js
executable file
·80 lines (76 loc) · 1.72 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
73
74
75
76
77
78
79
80
const nodeExternals = require('webpack-node-externals')
module.exports = {
siteName: 'gridsome-starter-docs',
siteUrl: `https://www.gridsome-starter-docs.loke.dev`,
titleTemplate: '%s - gridsome-starter-docs',
siteDescription: 'Starter project to quickly set up an documentation site with Gridsome.',
chainWebpack(config, { isServer }) {
config.module.rules.delete('svg')
config.module.rule('svg')
.test(/\.svg$/)
.use('vue')
.loader('vue-loader')
.end()
.use('svg-to-vue-component')
.loader('svg-to-vue-component/loader')
if (isServer) {
config.externals(nodeExternals({
whitelist: [
/\.css$/,
/\?vue&type=style/,
]
}))
}
},
plugins: [
{
use: '@gridsome/plugin-google-analytics',
options: {
id: 'UA-72659574-9'
}
},
{
use: '@gridsome/plugin-critical',
options: {
paths: ['/'],
width: 1300,
height: 900
}
},
{
use: '@gridsome/source-filesystem',
options: {
index: ['README'],
path: 'docs/**/*.md',
typeName: 'DocPage',
remark: {
autolinkHeadings: {
content: {
type: 'text',
value: '#'
}
},
plugins: [
'@gridsome/remark-prismjs'
]
}
}
},
{
use: '@gridsome/source-filesystem',
options: {
typeName: 'BlogPost',
path: './blog/*/index.md',
route: '/blog/:year/:month/:day/:slug',
refs: {
author: 'Author'
},
remark: {
plugins: [
'@gridsome/remark-prismjs'
]
}
}
}
]
}