-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-config.js
49 lines (48 loc) · 1.45 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
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: "Reflexer",
titleTemplate: "%s",
description:
"Reflexer is a platform where anyone can use their crypto collateral to mint RAI, a non-pegged stablecoin backed by ETH.",
keywords: "RAI, DeFi, ETH, stable asset are core",
siteUrl: "https://www.reflexer.finance",
image: "/android-chrome-512x512.png",
favicon: "/icon.png",
twitter: "@reflexerfinance",
},
plugins: [
"gatsby-plugin-styled-components",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: __dirname + "/static/",
},
},
{
resolve: `gatsby-source-contentful`,
options: {
spaceId: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
},
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
// You can add multiple tracking ids and a pageview event will be fired for all of them.
trackingIds: [
"G-VPZCZNBQ9G", // Google Analytics / GA
// "AW-CONVERSION_ID", // Google Ads / Adwords / AW
// "DC-FLOODIGHT_ID", // Marketing Platform advertising products (Display & Video 360, Search Ads 360, and Campaign Manager)
],
},
},
"gatsby-transformer-remark",
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-react-helmet`,
],
}