Skip to content

/_app/ blocked in robots.txt

SvelteKit outputs all compiled JavaScript and CSS under /_app/. A Disallow: /_app/ rule in robots.txt tells Googlebot not to fetch those files. Without them, Googlebot cannot render your pages. They appear blank in Google’s renderer and get indexed with no content.

Remove the Disallow: /_app/ rule.

User-agent: *
Allow: /
Sitemap: https://example.com/sitemap.xml

If you need to block specific paths, list them explicitly rather than using a broad prefix.

Terminal window
curl https://yourdomain.com/robots.txt

Confirm there is no Disallow: /_app/ line. Then re-run orino audit.