noc-book-2/gatsby-config.js
2024-01-24 14:27:00 +08:00

27 lines
563 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`,
{
resolve: `gatsby-transformer-json`,
options: {
typeName: 'BookSection',
},
},
`gatsby-plugin-postcss`,
`gatsby-plugin-react-helmet`,
],
};