-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
33 lines (32 loc) · 985 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
require("dotenv").config()
module.exports = {
siteMetadata: {
title: `Brixton Local.Life`,
description: `Getting the word out for the local community and businesses during the COVID-19 lockdown`,
image: "/images/brixton.jpeg",
url: "https://www.brixtonlocal.life"
},
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// The property ID; the tracking code won't be generated without it
trackingId: `${process.env.GOOGLE_ANALYTICS_ID}`,
// Defines where to place the tracking script - `true` in the head and `false` in the body
head: true,
// Setting this parameter is optional
anonymize: true,
// Setting this parameter is also optional
},
},
{
resolve: `gatsby-plugin-styled-components`,
options: {
// Add any options here
},
},
`gatsby-plugin-react-helmet`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
],
}