Docs SEO
How docs indexing works today, and how to make /docs indexable later.
Current behavior (default)
Docs pages under /docs are not indexed by search engines.
This is controlled by the docs layout metadata in:
web/src/app/docs/layout.tsx
Specifically, it sets:
robots: { index: false, follow: false }
How to make docs public/SEO indexable
When you’re ready for docs to show up in Google:
- Update
web/src/app/docs/layout.tsxand remove therobotsnoindex rule, or set:robots: { index: true, follow: true }
- Consider adding richer metadata on each doc page:
- canonical URLs
- OpenGraph / Twitter cards