2018-08-23 16:29:26 +01:00
|
|
|
module.exports = {
|
|
|
|
siteMetadata: {
|
|
|
|
title: 'Gatsby Default Starter'
|
|
|
|
},
|
|
|
|
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',
|
|
|
|
options: { prefixes: ['/certification/*'] }
|
|
|
|
},
|
2018-08-23 16:29:26 +01:00
|
|
|
{
|
|
|
|
resolve: 'gatsby-plugin-manifest',
|
|
|
|
options: {
|
|
|
|
name: 'gatsby-starter-default',
|
|
|
|
short_name: 'starter',
|
|
|
|
start_url: '/',
|
|
|
|
background_color: '#663399',
|
|
|
|
theme_color: '#663399',
|
|
|
|
display: 'minimal-ui',
|
|
|
|
icon: 'src/images/gatsby-icon.png' // This path is relative to the root of the site.
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'gatsby-plugin-sitemap'
|
|
|
|
]
|
|
|
|
};
|