-
Notifications
You must be signed in to change notification settings - Fork 14
/
gatsby-config.js
53 lines (53 loc) · 1.19 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
module.exports = {
siteMetadata: {
title: "DevRel KPIs",
description: "Measure and prove ROI of DevRel and Community.",
author: "@orbitmodel",
siteUrl: "https://devrel-kpis.com",
},
plugins: [
"gatsby-plugin-emotion",
"gatsby-transformer-xml",
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /assets/, // See below to configure properly
},
},
},
"gatsby-plugin-react-helmet",
"gatsby-transformer-sharp",
"gatsby-plugin-sharp",
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
{
resolve: "gatsby-remark-images",
options: {
maxWidth: 1024,
showCaptions: true,
},
},
"gatsby-remark-copy-linked-files",
],
},
},
{
resolve: "gatsby-plugin-google-analytics",
options: {
trackingId: "UA-149604794-2",
head: true,
respectDNT: true,
cookieDomain: "devrel-kpis.com",
},
},
{
resolve: "gatsby-plugin-canonical-urls",
options: {
siteUrl: "https://devrel-kpis.com",
},
},
],
};