Content Engine

new PerformanceObserver((entryList) => { for (const entry of entryList.getEntries()) { if (entry.duration > 50) { console.warn('Long Animation Frame detected!', entry); // این داده را به کنسول سئو بفرستید } } }).observe({type: 'long-animation-frame', buffered: true});