noc-book-2/gatsby-config.js
2022-07-26 16:05:50 -04:00

19 lines
392 B
JavaScript

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