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