freeCodeCamp/client/gatsby-config.js

31 lines
752 B
JavaScript
Raw Normal View History

module.exports = {
siteMetadata: {
2018-09-05 13:00:48 +00:00
title: 'freeCodeCamp',
siteUrl: 'https://www.freecodecamp.org'
},
proxy: {
2018-08-29 19:52:41 +00:00
prefix: '/internal',
url: 'http://localhost:3000'
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-plugin-create-client-paths',
options: { prefixes: ['/certification/*', '/unsubscribed/*'] }
},
{
resolve: 'gatsby-plugin-manifest',
options: {
2018-09-05 13:00:48 +00:00
name: 'freeCodeCamp',
short_name: 'fCC',
start_url: '/',
2018-09-05 13:00:48 +00:00
background_color: '#fff',
theme_color: '#006400',
display: 'minimal-ui',
2018-09-05 13:00:48 +00:00
icon: 'src/images/square_puck.png' // This path is relative to the root of the site.
}
},
'gatsby-plugin-sitemap'
]
}