fesite/gatsby-config.js

49 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2020-01-23 12:06:17 +00:00
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`,
2020-01-23 15:10:37 +00:00
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/src/content`,
},
},
{
resolve: `gatsby-transformer-yaml-plus`,
options: {
enableRemark: true,
markdownPreface: "md//",
},
},
`gatsby-transformer-remark`,
2020-01-23 12:06:17 +00:00
],
2020-01-23 15:10:37 +00:00
};