Skip to content

Instantly share code, notes, and snippets.

@moeriki
Last active April 21, 2023 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moeriki/9d73099e4c8011b7d428cc6e34923056 to your computer and use it in GitHub Desktop.
Save moeriki/9d73099e4c8011b7d428cc6e34923056 to your computer and use it in GitHub Desktop.
console.log('WV init');
var script = document.createElement('script');
script.src = 'https://unpkg.com/web-vitals@3/dist/web-vitals.iife.js';
script.onload = function () {
console.log('WV load');
// webVitals.onCLS(console.log);
webVitals.onFID(console.log);
// webVitals.onLCP(console.log);
};
document.head.prepend(script);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment