ABCDEFGHIJ
1
2
3
Affected MetricAreaRecommendationDetailsSite Sections AffectedCommentsPriorityEffortStatusOwner
4
LCP - Largest Contentful PaintImage optimisationServe Images in next-gen formatsNext-gen formats such as AVIF and WebP guarantee superior compression and quality characteristics compared to JPEG or PNG.
Important: check browser compatibility and establish a fallback format.
E.g. category pages, product pages, blog, homepage, sitewideGeneral Comments by the teamHighHighCompletedE.g developer, SEO Manager, Development Agency, Marketing Team
5
Properly size imagesEnsure you're serving images that are properly sized and don't waste any cellular data. Serve responsive images or use a CDN.MediumMediumIn Progress
6
Efficiently encode imagesCompress images, use lazy loading, and serve images with correct dimensions. LowLowNot Started
7
Avoid enormous network payloadsReduce the total size of the resources requested by your URL.
8
Code/Javascript OptimisationsEliminate render-blocking resourcesReduce first paint by inlining critical resources or deferring non-critical resources.
9
Reduce Unused JavascriptJavaScript competes for bandwith with other resources. Clean your page from unused JS
10
Reduce Unused CSSRemove unused CSS and reduce unnecessary bytes consumed by network activities
11
Minify JavaScriptMinifying JavaScript can reduce payload and parse time
12
Minify CSSMinifying CSS can reduce payload size
13
Text VisibilityEnsure text remains visible during webfont loadFonts are large files that can take time to load. Make sure text remains visible.
14
FID - First Input DelayThird-party CodeReduce the impact of third-party codeThird-party code can increase load time. Make sure there is no redundanct third-party code, and load it after the page has primarily finished loading it where possible.
15
JavaScript ExecutionMinimize main-thread workTry to keep main thread work low, freeing the renderer as soon as possible and keeping the main thread under 4 seconds during load
16
Remove duplicate modules in JavaScript bundlesRemove duplicate JS modules and reduce unnecessary bytes to be downloaded
17
Reduce JavaScript Execution timeTry to deliver smaller JS payloads and reduce the time spent parsing, compiling and executing JS
18
DOMAvoid an excessive DOM sizeLarge DOM trees can slow page performance and increase memory usage, cause longer style calculation. Try to keep it small
19
CLS - Cumulative Layout ShiftImagesImage elements do not have explicit width and heightSet an explicit width and height on image elements to reduce layout shifts and improve CLS