14 lines
445 B
TypeScript
14 lines
445 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
const reportWebVitals = (onPerfEntry?: (metric: any) => void) => {
|
|
if (onPerfEntry && typeof onPerfEntry === 'function') {
|
|
import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
|
|
getCLS(onPerfEntry);
|
|
getFID(onPerfEntry);
|
|
getFCP(onPerfEntry);
|
|
getLCP(onPerfEntry);
|
|
getTTFB(onPerfEntry);
|
|
});
|
|
}
|
|
};
|
|
|
|
export default reportWebVitals; |