-
|
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: 2 comments 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.
-
|
@jpanther could you add a configuration parameter to globally disable Hugo Pipes image processing, regardless of whether the image source is external to the Hugo site, inclusive of images stored in page bundles, so that no template overriding one day breaks with a newer Congo version? |
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.htmlwhich simply contains the following: