-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
43 lines (43 loc) · 1.09 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
module.exports = {
siteMetadata: {
title: `finitemonkeys.org`,
description: `so much shakespeare, so little time`,
author: `@CraigCottingham`,
},
plugins: [
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `finitemonkeys.org`,
short_name: `finitemonkeys`,
start_url: `/`,
background_color: `#FBECC2`,
theme_color: `#FBECC2`,
display: `minimal-ui`,
theme_color_in_head: false,
},
},
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `markdown-files`,
path: `${__dirname}/src/projects`,
},
},
`gatsby-plugin-sass`,
`gatsby-plugin-sharp`,
`gatsby-transformer-remark`,
`gatsby-transformer-sharp`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.app/offline
// 'gatsby-plugin-offline',
],
}