33 lines
605 B
JavaScript
33 lines
605 B
JavaScript
/**
|
|
* Configure your Gatsby site with this file.
|
|
*
|
|
* See: https://www.gatsbyjs.org/docs/gatsby-config/
|
|
*/
|
|
|
|
module.exports = {
|
|
pathPrefix: `/ctdo`,
|
|
plugins: [
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `pages`,
|
|
path: `${__dirname}/src/webpages`,
|
|
},
|
|
},
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `blog`,
|
|
path: `${__dirname}/blog`,
|
|
},
|
|
},
|
|
{
|
|
resolve: `gatsby-plugin-mdx`,
|
|
options: {
|
|
extensions: [`.mdx`, `.md`],
|
|
gatsbyRemarkPlugins: [],
|
|
},
|
|
},
|
|
],
|
|
}
|