Skip to content

SEO010 · Indexability

Severity: info

If a route’s <meta name="robots"> statically resolves to noindex (or none), it is surfaced so you can confirm the de-indexing is intentional. A dynamically-set robots value is not flagged.

A noindex directive removes the page from search results; an accidental noindex on a public route silently deindexes it — one of the most damaging SEO mistakes.

If this route should be indexed, remove noindex from its robots meta:

<svelte:head>
<meta name="robots" content="index, follow" />
</svelte:head>