homepage/gatsby-config.js

33 lines
602 B
JavaScript
Raw Normal View History

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: `pages`,
path: `${__dirname}/src/pages`,
2019-12-12 21:27:56 +00:00
},
},
2020-02-18 23:00:11 +00:00
{
resolve: `gatsby-source-filesystem`,
options: {
name: `blog`,
path: `${__dirname}/blog`,
},
},
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
}