Css – How to show next Image from url without specifying width and height
I'm trying to show image in next js using import Image from 'next/image'; without specifying width and height. Note that image is coming from URL and not from specific folder in project. <Image sizes={"100vw"} width={0} height={0} src={'https://picsum.photos/200/300'} placeholder='empty' /> This…