Methodology: This check follows wSEO methodology 1.0. How the assessment works

Audit the waterfall, not tag presence

How to audit Resource Hints

An effective hint starts the required connection or fetch earlier, is reused by its real consumer, and does not take bandwidth from CSS, LCP, or other critical requests.

Waterfall comparison before and after configuring Resource Hints
Compare start time, reuse, and contention under identical conditions.

Quick Chrome check

  1. In DevTools → Network, enable Disable cache and use the same mobile network and CPU profile.
  2. Show Priority and Initiator, clear the log, and reload.
  3. For preconnect, compare DNS, Initial connection, and SSL timing with the first request to that origin.
  4. For preload/modulepreload, verify an early start, correct type, and reuse by the same URL without another download.
  5. Open Console and wait for warnings about a preload not used soon after page load.
  6. Record several traces without and with the hint on mobile and desktop; compare LCP and other critical-resource starts.

Good result

The critical connection or resource starts earlier, the consumer reuses the request, there are no duplicates or warnings, and LCP and neighboring critical requests do not regress.

Classify the result

Remediation priority
ObservationRatingAction
Hint is used, request starts earlier, no contentionNo issueKeep it and save the trace
dns-prefetch/preconnect has no measurable benefit at little costLowRemove or retest on a slow network
Unused preload, wrong as/CORS, or duplicate fetchHighCorrect the match or remove the hint
Many hints delay CSS/LCP or break loadingCriticalRoll back and restore a minimal set

Inventory the DOM

[...document.querySelectorAll('link[rel]')]
  .filter(link => /^(preconnect|dns-prefetch|preload|modulepreload|prefetch)$/.test(link.rel))
  .map(link => ({ rel: link.rel, href: link.href, as: link.as,
    type: link.type, crossOrigin: link.crossOrigin, media: link.media }));

This lists hints in the current DOM only. Also inspect HTTP Link headers and source HTML: a dynamically inserted hint may have arrived too late.

Evidence to save

  • Exact URL, viewport, network/CPU profile, and cache state.
  • Hint source: source HTML, DOM, or HTTP Link header.
  • Request URL, Priority, Initiator, start time, and connection timing.
  • Reuse or duplicate evidence and exact Console warning.
  • LCP and waterfall before/after under identical conditions.
  • Decision, owner, and retest date.

False conclusions and scope

A warm cache hides DNS/TCP/TLS; HTTP/2 and HTTP/3 may coalesce connections; same-origin preconnect is generally useless. Browsers may ignore prefetch, while Service Workers, extensions, and network variance alter traces. One lab run is insufficient.

An unused warning can indicate a mismatched URL, destination, CORS mode, or media condition, not merely an unnecessary tag. This audit does not replace font, image, LCP, CDN/TTFB, or bundle-architecture analysis.

Next step

If the issue is confirmed, follow the implementation guide. For implementation with metric validation, use the configuration service.