-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
41 lines (39 loc) · 805 Bytes
/
gatsby-config.js
File metadata and controls
41 lines (39 loc) · 805 Bytes
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
module.exports = {
siteMetadata: {
title: `KB1RD.net`,
description: `Nathan Pennie`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-postcss`,
{
resolve: "gatsby-plugin-purgecss",
options: {
tailwind: true,
purgeOnly: ["src/css/style.css"]
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `blog`,
path: `${__dirname}/src/blog/`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `projects`,
path: `${__dirname}/src/projects/`,
},
},
`gatsby-transformer-remark`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-sharp`,
options: {
stripMetadata: false,
},
},
]
};