WIP, psts in place, parsing mostly correclty

This commit is contained in:
2020-09-21 21:56:11 -05:00
parent 8de94aa769
commit d274352b5f
87 changed files with 4820 additions and 11 deletions

View File

@@ -6,5 +6,15 @@
module.exports = {
/* Your site config here */
plugins: [`gatsby-plugin-sass`],
plugins: [
`gatsby-plugin-sass`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `posts`,
path: `${__dirname}/src/posts`,
},
},
`gatsby-transformer-remark`
],
}