Page has broken JavaScript
A missing script can silently break interactivity, forms, or even rendering on JavaScript-heavy pages.
What it is
This check flags <script src> references that return an error such as 404.
Why it matters for SEO
Broken JavaScript can prevent content from rendering for crawlers and users, and leaves features non-functional.
Example
<script src='/js/app.js'></script> -> 404 Not Found
How to fix
- Restore the file or correct the
srcpath (check hashed build filenames). - Verify asset versioning does not point to stale URLs.
- Remove references to scripts you no longer ship.
- Re-crawl to confirm scripts load.