This repository has been archived by the owner on Aug 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
93 lines (92 loc) · 2.59 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
84
85
86
87
88
89
90
91
92
93
require(`dotenv`).config()
module.exports = {
siteMetadata: {
title: `Posh Wash`,
description: `London's number one hand car wash and alloy wheel refurbishment centre.`,
author: `Jonathan Harte`,
siteUrl: `https://poshwash.london`,
},
plugins: [
{
resolve: `gatsby-plugin-gtag`,
options: {
trackingId: "UA-25509309-3",
head: false,
anonymize: true,
},
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Posh Wash`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/favicon.png`, // This path is relative to the root of the site.
},
},
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
`gatsby-plugin-offline`,
`gatsby-plugin-emotion`,
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data/`,
},
},
{
resolve: `gatsby-plugin-react-redux`,
options: {
// [required] - path to your createStore module
pathToCreateStoreModule: `./src/state/createStore`,
// [optional] - options passed to `serialize-javascript`
// info: https://github.com/yahoo/serialize-javascript#options
// will be merged with these defaults:
serialize: {
space: 0,
isJSON: true,
unsafe: false,
},
// [optional] - if true will clean up after itself on the client, default:
cleanupOnClient: true,
// [optional] - name of key on `window` where serialized state will be stored, default:
windowKey: `__PRELOADED_STATE__`,
},
},
{
resolve: `gatsby-source-google-places`,
options: {
placeIds: process.env.GOOGLE_PLACE_ID.split(` `),
apiKey: process.env.GOOGLE_PLACES_KEY,
},
},
{
resolve: `gatsby-plugin-extract-schema`,
options: {
dest: `${__dirname}/schema.json`,
},
},
`gatsby-plugin-advanced-sitemap`,
{
resolve: `gatsby-plugin-robots-txt`,
options: {
host: `https://poshwash.london`,
sitemap: `https://poshwash.london/sitemap.xml`,
policy: [{ userAgent: `*`, allow: `/` }],
},
},
],
}