mirror of
https://github.com/nature-of-code/noc-book-2
synced 2024-11-17 07:49:05 +01:00
27 lines
563 B
JavaScript
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`,
|
|
],
|
|
};
|