fix(website): remove invalid escape sequence syntax error in web-vitals.js

This commit is contained in:
oib
2026-02-27 13:18:56 +01:00
parent 01bdbef1e4
commit c67e2370c9

View File

@@ -14,7 +14,7 @@
// Load web-vitals from CDN // Load web-vitals from CDN
const script = document.createElement('script'); const script = document.createElement('script');
script.src = 'https://unpkg.com/web-vitals@3/dist/web-vitals.iife.js'\; script.src = 'https://unpkg.com/web-vitals@3/dist/web-vitals.iife.js';
script.onload = function() { script.onload = function() {
if (window.webVitals) { if (window.webVitals) {
window.webVitals.onCLS(sendToAnalytics); window.webVitals.onCLS(sendToAnalytics);