-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
56 lines (56 loc) · 1.46 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
module.exports = {
siteMetadata: {
title: `Write/Speak/Code`,
description: `Write/Speak/Code is on a mission to promote the visibility and leadership of technologists with marginalized genders through peer-led professional development.`,
author: `@writespeakcode`,
},
plugins: [
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./content`,
},
},
`gatsby-plugin-netlify-cms`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-flow`,
{
resolve: `gatsby-plugin-postcss`,
options: {
postCssPlugins: [require(`postcss-import`), require(`postcss-nested`)],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/content`,
},
},
`gatsby-transformer-remark`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `writespeakcode.com`,
short_name: `W/S/C`,
start_url: `/`,
background_color: `#172751`,
theme_color: `#EB6851`,
display: `minimal-ui`,
icon: `src/images/icon.png`, // This path is relative to the root of the site.
include_favicon: true,
},
},
`gatsby-plugin-offline`,
],
}