SEO010 · Indexability
Severity: info
What it checks
Section titled “What it checks”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.
Why it matters
Section titled “Why it matters”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.
How to fix
Section titled “How to fix”If this route should be indexed, remove noindex from its robots meta:
<svelte:head> <meta name="robots" content="index, follow" /></svelte:head>