-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-config.js
47 lines (47 loc) · 1.06 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
module.exports = {
siteMetadata: {
title: "Books",
description: "Books I have read",
author: "Brian Andrews",
keywords: `gatsby, brian andrews, books`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "Sbardian Books",
short_name: "sbardian-books",
start_url: "/",
background_color: "#606d80",
theme_color: "#606d80",
display: "standalone",
icon: "src/images/gatsby-icon.png",
},
},
{
resolve: `gatsby-plugin-breadcrumb`,
options: {
useAutoGen: true,
crumbLabelUpdates: [{ pathname: "/book", crumbLabel: "Books" }],
},
},
`gatsby-plugin-emotion`,
{
resolve: `gatsby-plugin-sharp`,
options: {
defaultQuality: 75,
},
},
{
resolve: `gatsby-source-sanity`,
options: {
projectId: "xothad89",
dataset: "books",
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-image`,
`gatsby-transformer-sharp`,
],
}