2021-03-23 12:07:19 +00:00
module . exports = {
siteMetadata : {
title : ` Gatsby Default Starter ` ,
description : ` Kick off your next, great Gatsby project with this default starter. This barebones starter ships with the main Gatsby configuration files you might need. ` ,
author : ` @gatsbyjs ` ,
} ,
plugins : [
` gatsby-plugin-react-helmet ` ,
` gatsby-plugin-image ` ,
{
resolve : ` gatsby-source-filesystem ` ,
options : {
name : ` images ` ,
path : ` ${ _ _dirname } /src/images ` ,
} ,
} ,
2021-03-25 10:44:52 +00:00
{
resolve : ` gatsby-source-filesystem ` ,
options : {
name : ` src ` ,
path : ` ${ _ _dirname } /src/ ` ,
} ,
} ,
2021-03-23 12:07:19 +00:00
` gatsby-transformer-sharp ` ,
2021-03-25 10:44:52 +00:00
` gatsby-transformer-json ` ,
2021-03-23 12:07:19 +00:00
` gatsby-plugin-sharp ` ,
` gatsby-plugin-react-svg ` ,
{
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-gatsby-cloud ` ,
` gatsby-plugin-postcss ` ,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
] ,
2021-03-25 10:44:52 +00:00
} ;