NuxtImg first loads the optimized picture (good)... but then loads the source too, why?
<NuxtImg
src="hero.jpeg" alt="stuff" format="webp"
sizes="100vw sm:50vw md:768px lg:1024px xl:1280px 2xl:1536px" quality="80"
class="absolute w-full h-full object-cover" placeholder />
What am I doing wrong here? Why does it load the source image after loading the optimized version?
src="hero.jpeg" alt="stuff" format="webp"
sizes="100vw sm:50vw md:768px lg:1024px xl:1280px 2xl:1536px" quality="80"
class="absolute w-full h-full object-cover" placeholder />
What am I doing wrong here? Why does it load the source image after loading the optimized version?