Skip to main content
Tag

Mdx

1 post in this tag

Awesome Images

Awesome Images

Avinash Rijal
1 min read

Netlify CMS Media Configuration First, in your static/admin/config.yml, make sure you have the following: media_folder: content/assets public_folder: ../assets Docs: https://www.netlifycms.org/docs/configuration-options/#media-and-public-folders. Gatsby Plugins From @cwgw: So digging a little deeper, it looks like Gatsby only looks for “subplugins” at one specific path, options.plugins. gatsby-plugin-mdx uses options.gatsbyRemarkPlugins. This is fine for transforming markdown as the plugin handles that itself, but Gatsby-specific api files like gatsby-browser.js don’t get loaded because Gatsby doesn’t know they exist. If you try this…

Read More