2019-12-11 19:02:42 +00:00
|
|
|
/**
|
|
|
|
* Configure your Gatsby site with this file.
|
|
|
|
*
|
|
|
|
* See: https://www.gatsbyjs.org/docs/gatsby-config/
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
2019-12-11 21:57:03 +00:00
|
|
|
pathPrefix: `/ctdo`,
|
2019-12-12 21:27:56 +00:00
|
|
|
plugins: [
|
|
|
|
{
|
|
|
|
resolve: `gatsby-source-filesystem`,
|
|
|
|
options: {
|
|
|
|
name: `markdown-pages`,
|
|
|
|
path: `${__dirname}/src/markdown-pages`,
|
|
|
|
},
|
|
|
|
},
|
2019-12-12 23:03:04 +00:00
|
|
|
{
|
|
|
|
resolve: `gatsby-plugin-mdx`,
|
|
|
|
options: {
|
|
|
|
extensions: [`.mdx`, `.md`],
|
|
|
|
gatsbyRemarkPlugins: [],
|
|
|
|
},
|
|
|
|
},
|
2019-12-12 21:27:56 +00:00
|
|
|
],
|
2019-12-11 19:02:42 +00:00
|
|
|
}
|