-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
72 lines (67 loc) · 1.94 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
70
71
72
require('dotenv').config({
path: `.env`,
});
const contentfulConfig = {
spaceId: process.env.CONTENTFUL_SPACE_ID,
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
};
// if you want to use the preview API please define
// CONTENTFUL_HOST in your environment config
// the `host` property should map to `preview.contentful.com`
// https://www.contentful.com/developers/docs/references/content-preview-api/#/reference/spaces/space/get-a-space/console/js
if (process.env.CONTENTFUL_HOST) {
contentfulConfig.host = process.env.CONTENTFUL_HOST;
}
const { spaceId, accessToken } = contentfulConfig;
if (!spaceId || !accessToken) {
throw new Error('Contentful spaceId and the access token need to be provided.');
}
module.exports = {
siteMetadata: {
title: 'Healthy Families Healthy Futures',
description:
'Healthy Families Healthy Futures is dedicated to providing healthy and nutritional information to young children and families',
url: 'https://www.healthyfuturesonline.com',
image: '/logo.png',
},
plugins: [
{
resolve: 'gatsby-plugin-google-tagmanager',
options: {
id: process.env.GOOGLE_TAGMANAGER_ID,
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sharp',
'gatsby-plugin-tsconfig-paths',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Healthy Families Healthy Futures`,
short_name: `HF-HF`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#65BF73`,
display: `standalone`,
icon: `static/square-logo.png`,
},
},
{
resolve: '@chakra-ui/gatsby-plugin',
options: {
isResettingCSS: true,
},
},
{
resolve: 'gatsby-source-contentful',
options: contentfulConfig,
},
{
resolve: `gatsby-plugin-typegen`,
options: {
outputPath: `src/__generated__/gatsby-types.d.ts`,
},
},
],
};