SEO004 · Open Graph image
Severity: warning
What it checks
Section titled “What it checks”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.
Why it matters
Section titled “Why it matters”og:image is the preview thumbnail shown when the page is shared on social platforms; without it links render bare and get fewer clicks.
How to fix
Section titled “How to fix”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>