Skip to content

SEO004 · Open Graph image

Severity: warning

Every route must include a <meta property="og:image"> tag (own or inherited through the layout chain). A missing Open Graph image meta tag is flagged.

og:image is the preview thumbnail shown when the page is shared on social platforms; without it links render bare and get fewer clicks.

Add <meta property="og:image">, or set openGraph.images on your meta component:

<svelte:head>
<meta property="og:image" content="https://example.com/og.png" />
</svelte:head>