-
Notifications
You must be signed in to change notification settings - Fork 23
/
gatsby-config.js
45 lines (45 loc) · 984 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
45
module.exports = {
siteMetadata: {
title: 'Principled GraphQL',
description: 'Best practices for implementing and scaling a graph'
},
plugins: [
{
resolve: 'gatsby-theme-apollo-core',
options: {
root: __dirname
}
},
{
resolve: 'gatsby-plugin-google-gtag',
options: {
trackingIds: [
'UA-74643563-15', // universal analytics - going away Jul 2023
'G-W76RRKRXRM'
]
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/content`,
name: 'content'
}
},
{
resolve: 'gatsby-transformer-remark',
options: {
excerpt_separator: '<!-- end -->',
plugins: [
'gatsby-remark-autolink-headers',
{
resolve: 'gatsby-remark-copy-linked-files',
options: {
ignoreFileExtensions: []
}
}
]
}
}
]
};