You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TIFF images are not displayed when using gatsby-plugin-image. This is because the <source> elements have their type attribute set to type="image/tif". This attribute is actually incorrect because we are using imgix's auto-formatting capabilities to serve up a browser-compatible image to the user. If I remove that attribute via inspector, the image displays correctly.
I need some way to either disable the type attribute or have it display the correct data.
Additionally, is there a reason that TIFF images use the <picture> element rather than the <img> tag that pngs or jpgs use? Or is that decided by gatsby-plugin-image?
The text was updated successfully, but these errors were encountered:
TIFF images are not displayed when using
gatsby-plugin-image
. This is because the<source>
elements have theirtype
attribute set totype="image/tif"
. This attribute is actually incorrect because we are using imgix's auto-formatting capabilities to serve up a browser-compatible image to the user. If I remove that attribute via inspector, the image displays correctly.I need some way to either disable the
type
attribute or have it display the correct data.Additionally, is there a reason that TIFF images use the
<picture>
element rather than the<img>
tag that pngs or jpgs use? Or is that decided bygatsby-plugin-image
?The text was updated successfully, but these errors were encountered: