-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
32 lines (32 loc) · 909 Bytes
/
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
module.exports = {
siteMetadata: {
title: "sheetpoetry.xyz",
siteUrl: "https://sheetpoetry.xyz",
description: "This is a GraphQL API to generate poems from randomly selected cells on a Google spreadsheet",
repo: "https://github.com/piducancore/sheetpoetry.xyz",
},
plugins: [
"gatsby-plugin-catch-links",
{
resolve: `gatsby-plugin-mdx`,
options: {
defaultLayouts: {
default: require.resolve("./src/components/layout.js"),
},
},
},
"gatsby-plugin-theme-ui",
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `sheetpoetry.xyz`,
short_name: `sheetpoetry`,
start_url: `/`,
background_color: `#FFFFFF`,
theme_color: `#D90368`,
display: `minimal-ui`,
icon: `static/images/icon.svg`, // This path is relative to the root of the site.
},
},
],
};