2020-06-01 18:11:15 +00:00
module . exports = {
siteMetadata : {
2020-06-02 14:36:56 +00:00
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" ,
2020-06-01 18:11:15 +00:00
} ,
plugins : [
2020-06-02 14:36:56 +00:00
"gatsby-plugin-react-helmet" ,
2020-06-01 18:11:15 +00:00
{
2020-06-02 14:36:56 +00:00
resolve : "gatsby-source-filesystem" ,
2020-06-01 18:11:15 +00:00
options : {
2020-06-02 14:36:56 +00:00
name : "images" ,
2020-06-01 18:11:15 +00:00
path : ` ${ _ _dirname } /src/images ` ,
} ,
} ,
2020-06-02 14:36:56 +00:00
"gatsby-transformer-sharp" ,
"gatsby-plugin-sharp" ,
"gatsby-plugin-typescript" ,
2020-06-01 18:11:15 +00:00
{
2020-06-02 14:36:56 +00:00
resolve : "gatsby-plugin-manifest" ,
2020-06-01 18:11:15 +00:00
options : {
2020-06-02 14:36:56 +00:00
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.
2020-06-01 18:11:15 +00:00
} ,
} ,
2020-06-02 14:36:56 +00:00
"gatsby-plugin-eslint" ,
2020-06-01 18:11:15 +00:00
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
] ,
}