-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
83 lines (82 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
73
74
75
76
77
78
79
80
81
82
83
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: 'Hasura swagstore',
author: 'Marion Schleifer',
description: 'Hasura swagstore.',
},
pathPrefix: '/gatsby-starter-ecommerce',
plugins: [
{
resolve: '@moltin/gatsby-source-moltin',
options: {
client_id:
process.env.MOLTIN_CLIENT_ID ||
'EdP3Gi1agyUF3yFS7Ngm8iyodLgbSR3wY4ceoJl0d2',
},
},
{
resolve: 'gatsby-source-graphql',
options: {
typeName: 'HASURA',
fieldName: 'hasura',
url: 'https://hasura-swag-store.herokuapp.com/v1/graphql',
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/pages`,
name: 'pages',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'img',
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// trackingId: `ADD YOUR TRACKING ID HERE`,
},
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
// Setting a color is optional.
color: `tomato`,
// Disable the loading spinner.
showSpinner: false,
},
},
'gatsby-plugin-styled-components',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Gatsby Shop App',
short_name: 'Shop App',
start_url: '/gatsby-starter-ecommerce/',
background_color: '#ffffff',
theme_color: '#ffffff',
display: 'minimal-ui',
icons: [
{
src: `/favicons/android-chrome-512x512.png`,
sizes: `512x512`,
type: `image/png`,
},
],
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-typescript`,
],
}