bpms_site/.svn/pristine/6d/6d03aefc4e30db90cf22097006d0b0e690d25d2f.svn-base
2025-11-02 16:38:49 +03:30

16 lines
491 B
Plaintext

import { useEffect } from "react";
import { onLCP, onFID, onCLS, onINP, onFCP, onTTFB } from "next/dist/compiled/web-vitals";
export function useReportWebVitals(reportWebVitalsFn) {
useEffect(()=>{
onCLS(reportWebVitalsFn);
onFID(reportWebVitalsFn);
onLCP(reportWebVitalsFn);
onINP(reportWebVitalsFn);
onFCP(reportWebVitalsFn);
onTTFB(reportWebVitalsFn);
}, [
reportWebVitalsFn
]);
}
//# sourceMappingURL=web-vitals.js.map