Next.js Discord

Discord Forum

General strategy for optimizing image loading?

Unanswered
Pink salmon posted this in #help-forum
Open in Discord
Pink salmonOP
I am using the Image tag with webp, 300kb and "unoptimized", but when loading the page theres gray until the image loads, no way to prevent this?

1 Reply

@Pink salmon I am using the Image tag with webp, 300kb and "unoptimized", but when loading the page theres gray until the image loads, no way to prevent this?
nextjs images are loaded lazy by default. You can change it to eager in the loading prop to load it immediately:
// Defaults to lazy
<Image loading="eager" />