-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
80 lines (80 loc) · 2.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
module.exports = {
pathPrefix: '/southfact-gatsby-site', // only use if deploying to githib pages - currently setup to push to s3 so this will break the site
siteMetadata: {
author: `jbliss, dmichelson`,
githubRepo: `https://github.com/SouthFACT/southfact-gatsby-site`,
githubRepoName: 'southfact-gatsby-site', // only use if deploying to githib pages - currently setup to push to s3 so this will break the site
description: `Southern Forest Area Change Tools - SouthFACT`,
shortDescription: `Southern Forest Area Change Tools`,
title: `SouthFACT`,
customRequestLink: `https://code.earthengine.google.com/99d055f769538474c2e566a764f6eb6d?hideCode=true`,
},
plugins: [
{
resolve: `gatsby-theme-material-ui`,
options: {
webFontsConfig: {
fonts: {
google: [
{
family: `Montserrat`,
variants: [`300`, `400`, `500`],
},
],
},
},
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/static/img`,
name: `images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content`,
name: `markdown-pages`,
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
`gatsby-remark-relative-images`,
{
resolve: `gatsby-remark-images`,
options: {},
},
{
resolve: `gatsby-plugin-netlify-cms-paths`,
},
{
resolve: `gatsby-remark-images`,
options: {
wrapperStyle:
'margin-left: 0!important;',
maxWidth: 650,
},
},
],
},
},
{
resolve: `gatsby-plugin-react-helmet`,
options: {},
},
{
resolve: `gatsby-plugin-styled-components`,
options: {},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-resolve-src`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}