Are images in Next.js lazy loaded when visibility is set to hidden?

Are images in Next.js lazy loaded when visibility is set to hidden? If that is not the case I would want to make them lazy load. I know I can use the priority prop but I want them to load in a specified viewport position.

Upvotes: 0

Views: 3273

Answers (1)

Moein Moeinnia
Moein Moeinnia

Reputation: 2341

All Images inside Image components in Next js are lazy loaded by default and it not going to change with visibility or other styling properties . Only priority prop will change the behavior .

Also for more confidence I recommend you analyze the Network tab and see the behavior of your images.

Upvotes: 0

Related Questions