-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
28 lines (28 loc) · 1.05 KB
/
gatsby-config.js
File metadata and controls
28 lines (28 loc) · 1.05 KB
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
module.exports = {
siteMetadata: {
title: 'WellyCompSci',
footer: 'WellyCompSci is a student project. Examples might be simplified for high school level learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using this site, you agree to have read and accepted our terms of use, cookie and privacy policy. Copyright 2017-2017. All Rights Reserved. Powered by Mann Power.'
},
plugins: ['gatsby-plugin-react-helmet', 'gatsby-plugin-react-next',{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/data`,
name: 'data',
}
}, {
resolve: 'gatsby-transformer-remark',
options: {
plugins: [{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1080,
},
}, `gatsby-remark-copy-linked-files` ]
}
},
'gatsby-transformer-json',
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-catch-links`
],
}