I successfully incorporated the svg logo into my webpage using the Next.js Image tag.
import Image from "next/Image"
export default function Home() {
return (
<div>
<Image width={32} height={32} src="/logo.svg"></Image>
</div>
)
}
Upon running a lighthouse report on the page, I received a warning stating "Serves images with low resolution".
https://i.sstatic.net/BehB1.png
Interestingly, adjusting both the width and height to 1024px eliminates this warning. How can I resolve this issue while maintaining a size of 32px?