robots.txt missing in /static (SvelteKit)
What this means
Section titled “What this means”SvelteKit serves static assets from the /static directory. Without a static/robots.txt, no /robots.txt is served. Crawlers operate without guidance and may index internal paths, API endpoints, or staging content.
How to fix it
Section titled “How to fix it”Create static/robots.txt.
User-agent: *Allow: /
Sitemap: https://example.com/sitemap.xmlReplace https://example.com with your actual domain. Add Disallow rules for any paths that should not be indexed.
Verify the fix
Section titled “Verify the fix”curl -I https://yourdomain.com/robots.txtConfirm the response is 200 OK. Then re-run orino audit.