I currently have a problem with the loading time of images using the builtin provided in Next js. I tried different options even when running it in production, the image loading time remains long (several seconds). Does anyone among you encounter this problem.
I am well aware that the first loading of the image can be long since there is a processing and caching on it. However this problem can appear even when the image is already cached.
<Image
className="absolute inset-0 h-full w-full"
src="/imgs/myimage.jpg"
layout="fill"
objectFit="cover"
alt=""
/>