Last active
April 21, 2023 09:47
-
-
Save moeriki/9d73099e4c8011b7d428cc6e34923056 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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