chore(client): Move client app to /client

This commit is contained in:
Bouncey
2018-08-31 12:52:49 +01:00
committed by mrugesh mohapatra
parent 0e4f588a1c
commit e59ad6ebda
172 changed files with 13171 additions and 14 deletions

25
client/gatsby-config.js Normal file
View File

@ -0,0 +1,25 @@
module.exports = {
siteMetadata: {
title: 'Gatsby Default Starter'
},
proxy: {
prefix: '/internal',
url: 'http://localhost:3000'
},
plugins: [
'gatsby-plugin-react-helmet',
{
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'
]
};