-
Notifications
You must be signed in to change notification settings - Fork 9
/
gatsby-config.js
59 lines (59 loc) · 1.38 KB
/
gatsby-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
module.exports = {
siteMetadata: {},
plugins: [
"gatsby-plugin-catch-links",
"gatsby-plugin-react-helmet",
`gatsby-plugin-offline`,
`gatsby-plugin-netlify-cache`,
`gatsby-plugin-sharp`,
`gatsby-plugin-styled-components`,
`gatsby-plugin-twitter`,
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Overpass:300,400,400i,600,600i,800,800i`]
}
},
`gatsby-transformer-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/pages`,
name: "pages"
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/lib/assets`,
name: "assets"
}
},
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
`gatsby-remark-responsive-iframe`,
{
resolve: `gatsby-remark-images`,
options: {
linkImagesToOriginal: false,
maxWidth: 580,
withWebp: true
}
},
{
resolve: "gatsby-remark-external-links",
options: {
target: "_self",
rel: "nofollow"
}
},
`gatsby-transformer-sharp`,
`gatsby-remark-autolink-headers`,
`gatsby-remark-copy-linked-files`
]
}
}
]
};