-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatsby-config.js
executable file
·60 lines (58 loc) · 1.22 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
// @ts-check
module.exports = {
siteMetadata: {
title: "Good Engineering",
description: "Stories from the top engineering blogs in one place.",
author: "Owen Kelly",
},
plugins: [
"gatsby-plugin-netlify-cache",
{
resolve: `gatsby-plugin-prefetch-google-fonts`,
options: {
fonts: [
{
family: `IBM Plex Serif`,
variants: [`400`],
},
{
family: `IBM Plex Mono`,
variants: [`400`, `400i`, `700`],
},
],
},
},
{
resolve: `gatsby-plugin-typography`,
options: {
pathToConfigModule: `src/theme/typography`,
omitGoogleFont: true,
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "posts",
path: `${__dirname}/feeds/output/`,
},
},
"gatsby-plugin-catch-links",
"gatsby-plugin-typescript",
"gatsby-plugin-react-helmet",
{
resolve: "gatsby-plugin-styled-components",
options: {
ssr: true,
},
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /src/,
},
},
},
'gatsby-plugin-offline'
],
};