Content without JavaScript
50FailContent is present in the raw HTMLOnly 17 words are present before JavaScript runs.
Why agents care. Most agents read the HTML your server sends and never execute JavaScript. If the words only appear after hydration, the agent sees an empty page.
To an agent that does not execute JavaScript — which is most of them — this page is effectively blank. This is the highest-impact problem on this report.
Fix. Server-render or statically generate your content. In Next.js that means keeping page content in Server Components; in a SPA it means adding SSR or prerendering.
- Extracted text: “Example DomainThis domain is for use in documentation examples without needing permission. Avoid use in operations.Learn more…”
2 checks passed
PassThe page is not an empty client-rendered shellNo empty client-rendered mount point detected.
Why agents care. An empty mount point with a bundle after it is the classic signature of a site that is invisible to agents.
PassContent is not buried in markupVisible text is 22.4% of the page source.
Why agents care. A page that is 98% markup and inline script burns an agent’s context window before it reaches your actual content.