2020-06-01 18:11:15 +00:00
|
|
|
module.exports = {
|
|
|
|
siteMetadata: {
|
2020-06-05 14:55:46 +00:00
|
|
|
title: "My Opinionated Gatsby Starter",
|
2020-06-02 14:36:56 +00:00
|
|
|
description:
|
2020-06-05 14:16:30 +00:00
|
|
|
"Default Gatsby starter with a bunch of stuff that I like to use tacked on.",
|
|
|
|
author: "@alrayyes",
|
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-05 18:49:42 +00:00
|
|
|
"gatsby-plugin-emotion",
|
2020-06-08 12:36:42 +00:00
|
|
|
`gatsby-plugin-postcss`,
|
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`,
|
|
|
|
],
|
|
|
|
}
|