noc-book-2/gatsby-config.js

28 lines
563 B
JavaScript
Raw Normal View History

2022-07-21 03:39:22 +02:00
module.exports = {
siteMetadata: {
title: `Nature of Code`,
2022-07-26 22:05:50 +02:00
siteUrl: `https://natureofcode.com`,
description: ``,
2022-07-21 03:39:22 +02:00
},
plugins: [
{
2022-07-26 21:25:53 +02:00
resolve: `gatsby-source-filesystem`,
2022-07-21 03:39:22 +02:00
options: {
2022-07-29 03:29:28 +02:00
name: `content`,
2022-07-26 21:25:53 +02:00
path: `${__dirname}/content/`,
2022-07-21 03:39:22 +02:00
},
},
2022-07-29 03:29:28 +02:00
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
2024-01-24 07:27:00 +01:00
{
resolve: `gatsby-transformer-json`,
options: {
typeName: 'BookSection',
},
},
2022-07-21 03:39:22 +02:00
`gatsby-plugin-postcss`,
2022-07-26 22:05:50 +02:00
`gatsby-plugin-react-helmet`,
2022-07-21 03:39:22 +02:00
],
};