Images loading slow

The images used in my site are loading quite slow and I am wondering what configurations or optimizations would speed up image load. Here’s my site: https://agron.design/

Any help or advice greatly appreciated!

1 Like

@agron There are some great docs about image optimization in Next.js here!

TL;DR Use the <Image> component because it will for the most part automatically optimize your images and improve your performance a LOT :smiley:

1 Like

The images all appear to be well over 2000px wide, you can use the next Image component to resize dynamically and serve them at smaller sizes based on the use case, for example 300px wide for small thumbnails

2 Likes