Add blog post

This commit is contained in:
Kevin Kandlbinder 2021-12-24 02:16:54 +00:00 committed by GitHub
parent a22002c150
commit d39e41cf4b
14 changed files with 188 additions and 32 deletions

View file

@ -119,6 +119,7 @@ module.exports = {
`gatsby-plugin-eslint`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-remark-images`,
`gatsby-transformer-sharp`,
`gatsby-transformer-json`,
{
@ -170,7 +171,28 @@ module.exports = {
name: `careerContent`,
},
},
"gatsby-plugin-mdx",
{
resolve: `gatsby-plugin-mdx`,
options: {
gatsbyRemarkPlugins: [
{
resolve: "gatsby-remark-copy-linked-files",
options: {
destinationDir: "mdassets",
},
},
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1200,
showCaptions: true,
markdownCaptions: false,
withWebp: true,
},
},
],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {