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

38 lines
1.1 KiB
JavaScript
Raw Normal View History

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",
},
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",
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}