noc-book-2/gatsby-config.js
2022-07-28 21:29:28 -04:00

22 lines
480 B
JavaScript

module.exports = {
siteMetadata: {
title: `Nature of Code`,
siteUrl: `https://natureofcode.com`,
description: ``,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content/`,
},
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-transformer-json`,
`gatsby-plugin-postcss`,
`gatsby-plugin-react-helmet`,
],
};