Page has redirected CSS
CSS is render-blocking, so a redirected stylesheet URL delays the moment the page becomes visible.
What it is
This check flags <link rel='stylesheet'> values that resolve through a 3xx redirect.
Why it matters for SEO
Redirected stylesheets push back first paint and Largest Contentful Paint, weakening performance scores.
Example
/css/app.css -> 301 /css/app.min.css
How to fix
- Reference the final stylesheet URL.
- Update templates and build output.
- Keep the redirect only for legacy references.
- Re-crawl to confirm CSS loads without redirects.