-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
120 lines (119 loc) · 2.99 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
115
116
117
118
119
120
require("dotenv").config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
flags: {
DEV_SSR: false
},
siteMetadata: {
title: `Joshua Welford`,
description: `Joshua Welford`,
author: `@welfordian`,
},
plugins: [
`gatsby-plugin-preact`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-postcss`,
`gatsby-plugin-image`,
{
resolve: 'gatsby-plugin-offline',
options: {
workboxConfig: {
globPatterns: ['*.html'],
runtimeCaching: [
{
urlPattern: /(\.js$|\.css$|static\/)/,
handler: `CacheFirst`,
},
{
urlPattern: /^https?:.*\/page-data\/.*\/(page-data|app-data)\.json$/,
handler: `NetworkFirst`,
options: {
networkTimeoutSeconds: 1,
},
},
{
urlPattern: /^https?:.*\.(png|jpg|jpeg|webp|svg|gif|tiff|js|woff|woff2|json|css)$/,
handler: `StaleWhileRevalidate`,
},
{
urlPattern: /^https?:\/\/fonts\.googleapis\.com\/css/,
handler: `StaleWhileRevalidate`,
},
{
urlPattern: /\/$/,
handler: `NetworkFirst`,
options: {
networkTimeoutSeconds: 1,
},
},
],
}
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Josh Welford`,
short_name: `JW`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/gatsby-icon.png`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-gatsby-cloud`,
// {
// resolve: `gatsby-source-wordpress`,
// options: {
// /*
// * The full URL of the WordPress site's GraphQL API.
// * Example : 'https://www.example-site.com/graphql'
// */
// url: `http://wordpress.test/graphql`,
// auth: {
// jwt_user: process.env.JWT_USER,
// jwt_pass: process.env.JWT_PASSWORD,
// }
// },
// },
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-202915992-1",
head: false,
anonymize: false,
respectDNT: false,
exclude: ["/preview/**"],
pageTransitionDelay: 0,
defer: true,
enableWebVitalsTracking: true,
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /src\/images/
}
}
},
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'https://welford.me',
policy: [{userAgent: '*', allow: '/'}]
}
}
],
}