Hello I have alway thought image component automatically deliver different sizes on different screen sizes , but how automatically , when and what size
so I have make various test to prouve it, but got same size of image for any size of screen, I have dit in chrome console and have disabled cache
the image was converted to webp good, but there only one size for all devices
import kebab from "../../public/kebab.png";
export default function Home() {
return (
<div className="w-full h-full">
<Image src={kebab} alt="kebab" className="object-contain"></Image>
</div>
);
}
