-
Is there a way to disable the image resizing with Hugo pipes? I have all of my images on AWS S3 as a remote URL. I am getting the following error when I try to build the site: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Thanks for the question. This is a limitation with the theme currently. The next release will change this behaviour so that when an external URL is provided as the image source, there will be no Hugo image processing. However, if you want to completely disable any theme logic around image processing, you can create a file in your project at <img src="{{ .Destination }}" alt="{{ .Text }}" title="{{ .Title }}" /> |
Beta Was this translation helpful? Give feedback.
Thanks for the question. This is a limitation with the theme currently. The next release will change this behaviour so that when an external URL is provided as the image source, there will be no Hugo image processing.
However, if you want to completely disable any theme logic around image processing, you can create a file in your project at
layouts/_default/_markup/render-image.html
which simply contains the following: