-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathgatsby-config.js
44 lines (44 loc) · 982 Bytes
/
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
module.exports = {
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src/`,
},
},
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: [".md", ".mdx"],
},
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: `G-KCHKTE9622`,
anonymize: true,
respectDNT: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
icon: `${__dirname}/src/img/favicon.png`,
name: "The Live Coders",
short_name: "The Live Coders",
dir: "auto",
lang: "en-GB",
background_color: "#9148db",
theme_color: `#9148db`,
display: "standalone",
orientation: "any",
start_url: "/",
},
},
],
}