This repository has been archived by the owner on Nov 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgatsby-config.js
60 lines (59 loc) · 1.47 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
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: 'Bodega Cloud',
},
plugins: [
`gatsby-plugin-layout`,
`gatsby-plugin-react-helmet`,
{
resolve: 'gatsby-plugin-apollo-shopify',
options: {
shopName: process.env.GATSBY_SHOPIFY_SHOP_NAME,
accessToken: process.env.GATSBY_SHOPIFY_ACCESS_TOKEN,
},
},
{
resolve: `gatsby-transformer-json`,
options: {
typeName: `json`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `settings`,
path: `./src/settings/`,
},
},
{
resolve: `gatsby-source-graphql`,
options: {
typeName: 'Shopify',
fieldName: 'shopify',
url: `https://${process.env.GATSBY_SHOPIFY_SHOP_NAME}.myshopify.com/api/graphql`,
headers: {
'X-Shopify-Storefront-Access-Token': process.env.GATSBY_SHOPIFY_ACCESS_TOKEN,
},
},
},
`gatsby-plugin-netlify-cms`,
`gatsby-plugin-netlify-cache`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Bodega Cloud',
short_name: 'Bodega',
start_url: '/',
background_color: '#50B83C',
theme_color: '#50B83C',
display: 'minimal-ui',
icon: 'src/images/gatsby-icon.png', // This path is relative to the root of the site.
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-netlify`,
],
}