The Gatsby Remark Images plugin takes an image in markdown, and then generates a 20px by 20px blur-up background image that is displayed as a placeholder whilst the image is fetched.
This is done in the CSS of <span> element that serves as the background. For example:
All blur-up background <span> tags have same CSS classname - gatsby-resp-image-background-image, so this is just a matter of removing the background-image CSS property for each tag.
The Issue
The Gatsby Remark Images plugin takes an image in markdown, and then generates a 20px by 20px blur-up background image that is displayed as a placeholder whilst the image is fetched.
This is done in the CSS of
<span>
element that serves as the background. For example:The Fix
All blur-up background
<span>
tags have same CSS classname -gatsby-resp-image-background-image
, so this is just a matter of removing the background-image CSS property for each tag.So now we'd have