fesite/gatsby-config.js

49 lines
1.1 KiB
JavaScript

module.exports = {
siteMetadata: {
title: `faulty equipment`,
description: `notso secret lair`,
author: `Alessandro Gatti`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
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`,
},
},
`gatsby-plugin-typescript`,
`gatsby-plugin-sass`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content`,
},
},
{
resolve: `gatsby-transformer-yaml-plus`,
options: {
enableRemark: true,
markdownPreface: "md//",
},
},
`gatsby-transformer-remark`,
],
};