-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
69 lines (64 loc) · 1.67 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
});
const contentfulConfig = {
spaceId: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
environment: process.env.CONTENTFUL_ENVIRONMENT,
};
if (process.env.CONTENTFUL_HOST) {
contentfulConfig.host = process.env.CONTENTFUL_HOST;
contentfulConfig.accessToken = process.env.CONTENTFUL_PREVIEW_ACCESS_TOKEN;
}
const { spaceId, accessToken } = contentfulConfig;
if (!spaceId || !accessToken) {
throw new Error(
"Contentful spaceId and the access token need to be provided. Received: " +
JSON.stringify(contentfulConfig)
);
}
// starter config
module.exports = {
siteMetadata: {
title: "Gatsby Starter Landing Page",
description:
"Create custom landing pages using Gatsby and Contentful with this Gatsby Starter",
},
plugins: [
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: ["G-7F1SE12JLR"],
},
},
{
resolve: `gatsby-plugin-reddit-pixel`,
options: {
pixelId: "t2_uamr9xer",
},
},
{
resolve: `gatsby-theme-landing-page`,
options: contentfulConfig,
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Gatsby Starter Landing Page`,
short_name: `Gatsby Starter Landing Page`,
start_url: `/`,
background_color: `#fff`,
theme_color: `#000`,
display: `browser`,
icon: `src/assets/favicon.png`,
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Space Mono\:300,400,400i,700`, `Karla`],
display: "swap",
},
},
],
};