Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 651 Bytes

no-img-element.md

File metadata and controls

32 lines (23 loc) · 651 Bytes

No Img Element

Why This Error Occurred

An HTML <img> element was used to display an image. For better performance and automatic image optimization, use Next.js' built-in image component instead.

Possible Ways to Fix It

Import and use the <Image /> component:

import { Image } from 'next/image'

function Home() {
  return (
    <>
      <Image
        src="https://example.com/test"
        alt="Landscape picture"
        width={500}
        height={500}
      />
    </>
  )
}

export default Home

Useful Links