noc-book-2/gatsby-config.js
2022-07-20 21:39:22 -04:00

16 lines
325 B
JavaScript

module.exports = {
siteMetadata: {
title: `Nature of Code`,
siteUrl: `https://www.yourdomain.tld`,
},
plugins: [
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: [`.mdx`],
gatsbyRemarkPlugins: ['gatsby-remark-prismjs'],
},
},
`gatsby-plugin-postcss`,
],
};