Debug INP in the field

PHOTO EMBED

Sun Oct 01 2023 19:01:19 GMT+0000 (Coordinated Universal Time)

Saved by @dpavone #javascript

function logINPDebugInfo(inpEntry) {
  console.log('INP target element:', inpEntry.target);
  console.log('INP interaction type:', inpEntry.name);

  const navEntry = performance.getEntriesByType('navigation')[0];
  const wasINPBeforeDCL =
    inpEntry.startTime < navEntry.domContentLoadedEventStart;

  console.log('INP occurred before DCL:', wasINPBeforeDCL);
}
content_copyCOPY

https://web.dev/debug-performance-in-the-field/