Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 227 Bytes

01-lcp-candidates-console-log.md

File metadata and controls

7 lines (7 loc) · 227 Bytes
new PerformanceObserver((entryList) => {
  for (const entry of entryList.getEntries()) {
    console.log("LCP candidate:", entry.startTime, entry);
  }
}).observe({ type: "largest-contentful-paint", buffered: true });