-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridsome.config.js
112 lines (108 loc) · 2.49 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
const nodeExternals = require('webpack-node-externals')
module.exports = {
siteName: 'Hardik Shah',
siteUrl: `https://hardikshah.dev`,
titleTemplate: '%s - Hardik Shah',
siteDescription: 'I\'m a full-stack developer based in Melbourne, Victoria specializing in building (and occasionally designing) high-quality websites and applications. 🚀',
icon: {
favicon: {
src: './src/assets/images/only-logo.png',
sizes: [16, 32, 96]
},
touchicon: {
src: './src/assets/images/only-logo.png',
sizes: [76, 152, 120, 167],
precomposed: false
}
},
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/,
/vue-instantsearch/,
/instantsearch.js/,
/typeface-league-spartan/
]
}))
}
},
templates: {
BlogPost: '/blog/:year/:month/:day/:slug',
Contributor: '/contributor/:id',
},
plugins: [
{
use: '@gridsome/plugin-google-analytics',
options: {
id: 'UA-160072651-2'
}
},
{
use: '@gridsome/plugin-critical',
options: {
paths: ['/'],
width: 1300,
height: 900
}
},
{
use: '@gridsome/source-filesystem',
options: {
path: 'experience/*.md',
typeName: 'Experiences',
remark: {
plugins: [
'@gridsome/remark-prismjs'
]
}
}
},
{
use: '@gridsome/source-filesystem',
options: {
typeName: 'BlogPost',
path: './blog/*/index.md',
refs: {
author: 'Contributor'
},
remark: {
plugins: [
'@gridsome/remark-prismjs'
]
}
}
},
{
use: 'gridsome-plugin-manifest',
options: {
background_color: '#0D2836',
icon_path: './src/assets/images/only-logo.png',
name: 'Hardik Shah',
short_name: 'Hardik',
theme_color: '#73CBE2',
lang: 'en',
},
},
{
use: 'gridsome-plugin-service-worker',
options: {
networkFirst: {
routes: [
'/',
/\.(js|css|png|svg|jpg|jpeg)$/,
],
},
},
},
]
}