1
0
mirror of https://github.com/alrayyes/my-opinionated-gatsby-starter synced 2023-11-14 15:56:29 +00:00
my-opinionated-gatsby-starter/gatsby-config.js

40 lines
1.1 KiB
JavaScript
Raw Normal View History

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",
},
plugins: [
2020-06-02 14:36:56 +00:00
"gatsby-plugin-react-helmet",
{
2020-06-02 14:36:56 +00:00
resolve: "gatsby-source-filesystem",
options: {
2020-06-02 14:36:56 +00:00
name: "images",
path: `${__dirname}/src/images`,
},
},
2020-06-02 14:36:56 +00:00
"gatsby-transformer-sharp",
"gatsby-plugin-sharp",
"gatsby-plugin-typescript",
{
2020-06-02 14:36:56 +00:00
resolve: "gatsby-plugin-manifest",
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-02 14:36:56 +00:00
"gatsby-plugin-eslint",
2020-06-05 18:49:42 +00:00
"gatsby-plugin-emotion",
2020-06-08 12:36:42 +00:00
`gatsby-plugin-postcss`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}