Skip to content

SEO005 · Open Graph title

Severity: warning

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

og:title controls the headline shown when the page is shared on social platforms, independent of the document <title>.

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

<svelte:head>
<meta property="og:title" content="Page title" />
</svelte:head>