-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridsome.config.js
58 lines (56 loc) · 1.26 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
module.exports = {
siteName: 'Snir Shechter',
siteUrl: 'https://snir.sh',
siteDescription: 'Snir Shechter, a software developer',
titleTemplate: 'Snir Shechter | %s',
chainWebpack(config) {
const svgRule = config.module.rule('svg')
svgRule.uses.clear()
svgRule
.oneOf('inline')
.resourceQuery(/vueComponent/)
.use('babel-loader')
.loader('babel-loader')
.end()
.use('vue-svg-loader')
.loader('vue-svg-loader')
.options({
svgo: {
plugins: [{ prefixIds: true }],
},
})
.end()
.end()
.oneOf('external')
.use('file-loader')
.loader('file-loader')
.options({
name: 'assets/[name].[hash:8].[ext]',
})
},
plugins: [
{
use: '@gridsome/plugin-sitemap',
options: {
cacheTime: 600000, // default
},
},
{
use: 'gridsome-plugin-tailwindcss',
options: {
purgeConfig: {
content: ['./src/**/*.vue', './src/**/*.scss', './src/**/*.js', './src/**/*.html', './src/**/*.md'],
whitelist: ['body', 'html', 'img', 'a', 'g-image', 'g-image--lazy', 'g-image--loaded', 'active'],
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || [],
},
},
},
],
css: {
loaderOptions: {
scss: {
additionalData: `@import "@/styles/config/_index.scss";`,
},
},
},
}