You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -538,7 +623,13 @@ It is important that all of these checks pass to minimize the delay between the
538
623
case'LCPBreakdown':
539
624
return'This insight is used to analyze the time spent that contributed to the final LCP time and identify which of the 4 phases (or 2 if there was no LCP resource) are contributing most to the delay in rendering the LCP element.';
540
625
case'NetworkDependencyTree':
541
-
return'';
626
+
return`This insight analyzes the network dependency tree to identify:
627
+
- The maximum critical path latency (the longest chain of network requests that the browser must download before it can render the page).
628
+
- Whether current [preconnect] tags are appropriate, according to the following rules:
629
+
1. They should all be in use (no unnecessary preconnects).
630
+
2. All preconnects should specify cross-origin correctly.
631
+
3. The maximum of 4 preconnects should be respected.
632
+
- Opportunities to add [preconnect] for a faster loading experience.`;
542
633
case'RenderBlocking':
543
634
return'This insight identifies network requests that were render blocking. Render blocking requests are impactful because they are deemed critical to the page and therefore the browser stops rendering the page until it has dealt with these resources. For this insight make sure you fully inspect the details of each render blocking network request and prioritize your suggestions to the user based on the impact of each render blocking request.';
example question: How can I prevent layout shifts on this page?
879
+
- insight name: NetworkDependencyTree
880
+
description: [Avoid chaining critical requests](https://developer.chrome.com/docs/lighthouse/performance/critical-request-chains) by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
example question: How do I optimize my network dependency tree?
879
883
- insight name: ImageDelivery
880
884
description: Reducing the download time of images can improve the perceived load time of the page and LCP. [Learn more about optimizing image size](https://developer.chrome.com/docs/lighthouse/performance/uses-optimized-images/)
0 commit comments