noc-book-2/gatsby-config.js
2022-07-26 15:25:53 -04:00

17 lines
339 B
JavaScript

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