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