forked from monzo/progression-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
executable file
·41 lines (41 loc) · 956 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
33
34
35
36
37
38
39
40
41
module.exports = {
siteMetadata: {
title: 'Monzo Progression',
},
plugins: [
`gatsby-plugin-styled-components`,
'gatsby-plugin-flow',
'gatsby-plugin-eslint',
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/frameworks`,
name: "frameworks",
},
},
`gatsby-transformer-remark`,
`gatsby-transformer-yaml`,
`gatsby-plugin-react-helmet`,
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: `gatsby-plugin-nprogress`,
options: {
color: `#2991cc`,
showSpinner: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'progression-framework',
short_name: 'progression-framework',
start_url: '/',
background_color: '#14233c',
theme_color: '#14233c',
display: 'minimal-ui',
icon: 'src/images/favicon.png',
},
}
],
}