Skip to content

Rule · SEO

<img> without an alt attribute

seo/img-alt-missingerrorvoid seoupdated

Why it matters

Alt text is how Google Images, screen readers and text-only AI crawlers understand images. A missing alt attribute (not an empty one) is an accessibility failure.

How to fix it

Add descriptive alt text to content images and alt="" to decorative ones. next/image requires alt.

Example

tsx
<Image src="/dashboard.png" alt="Acme dashboard showing weekly active users" width={1200} height={750} />
<Image src="/divider.svg" alt="" width={600} height={8} /> {/* decorative */}

References

void seo reports 60 rules in this category. What search engines need from the raw response: status codes, titles and descriptions in <head>, self-referencing canonicals, one h1, crawlable links, Open Graph, icons, robots.txt and a sitemap with real dates.