Get images working from .md post files

This commit is contained in:
2020-09-23 17:45:36 -05:00
parent 0fb5d6ef41
commit 0bba342e8e
28 changed files with 2247 additions and 21 deletions

View File

@@ -15,6 +15,20 @@ module.exports = {
path: `${__dirname}/src/posts`,
},
},
`gatsby-transformer-remark`
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 800,
},
},
],
},
}
],
}