-
Notifications
You must be signed in to change notification settings - Fork 9
/
gatsby-config.js
114 lines (111 loc) · 2.95 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
'use strict'
const { flatten } = require('lodash')
const proxy = require('http-proxy-middleware')
// Environment variables prefixed by "GATSBY" are accessible in src/ files
process.env.GATSBY_ACTIVE_ENV =
process.env.GATSBY_ACTIVE_ENV || process.env.NODE_ENV
module.exports = {
siteMetadata: {
title: `SparkPost Developers`,
description: `SparkPost developer resources including documentation, API reference, and client libraries.`,
},
developMiddleware: app => {
app.use(
'/.netlify/functions/',
proxy({
target: 'http://localhost:9000',
pathRewrite: {
'/.netlify/functions/': '',
},
})
)
},
plugins: flatten([
process.env.GATSBY_ACTIVE_ENV !== 'docs'
? [
{
resolve: `gatsby-plugin-page-creator`,
options: {
path: `${__dirname}/content/pages`,
},
},
]
: [],
process.env.GATSBY_ACTIVE_ENV === 'publish'
? [
{
resolve: `gatsby-plugin-algolia`,
options: {
appId: 'SFXAWCYDV8',
apiKey: process.env.ALGOLIA_TOKEN,
queries: [
require('./algolia/apiReference'),
require('./algolia/momentum'),
],
},
},
]
: [],
`gatsby-transformer-json`,
`gatsby-transformer-api-blueprint`,
`gatsby-source-sparkpost-api`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content/`,
},
},
{
resolve: `gatsby-plugin-styled-components`,
options: {
displayName: true,
},
},
// Google Analytics, HotJar, etc. are added through GTM
{
resolve: `gatsby-plugin-google-tagmanager`,
options: {
id: 'GTM-WN7C84',
includeInDevelopment: false,
},
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
color: `#fa6423`,
showSpinner: false,
},
},
`gatsby-plugin-netlify-cache`,
`gatsby-plugin-lodash`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-netlify`,
options: {
headers: {
// Disable cache for Gatsby's default service worker file path
// suggested by https://www.netlify.com/blog/2018/06/28/5-pro-tips-and-plugins-for-optimizing-your-gatsby---netlify-site/
'/sw.js': ['Cache-Control: no-cache'],
},
},
},
`gatsby-plugin-sharp`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
// It's important to specify the maxWidth (in pixels) of
// the content container as this plugin uses this as the
// base for generating different widths of each image.
maxWidth: 1000,
},
},
],
},
},
]),
}