Skip to content

How to lazy load images in Hugo

New Course Coming Soon:

Get Really Good at Git

When I launched the new home for my ebooks at The Valley of Code I didn’t think about my hosting bill, and the impact of loading lots of images for the clients as well.

Since each page is very long (no navigation, that’s the point of them being books rather than articles), one could even be 10MB.

So I decided to fix this problem by lazy loading them, in other words the browser only loads the image when the user scrolls to that image.

It’s a tradeoff, but I’m pretty sure 99% of people that open a page will never even scroll to that image right away.

Problem was.. I no control over the markup! All the content was in Markdown.

But I found out Hugo allows us to override how images are rendered.

Create the file layouts/_default/_markup/render-image.html in your theme with this content:

<img src="{{ .Destination | safeURL }}" alt="{{ .Text }}" loading="lazy" />

This makes the resulting HTML have the loading="lazy" attribute, which lazily loads images.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching Summer 2024. Join the waiting list!

Here is how can I help you: