main repo

This commit is contained in:
Basilosaurusrex
2025-11-24 18:09:40 +01:00
parent b636ee5e70
commit f027651f9b
34146 changed files with 4436636 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import { NEXT_DYNAMIC_NO_SSR_CODE } from "../shared/lib/lazy-dynamic/no-ssr-error";
export default function onRecoverableError(err) {
// Using default react onRecoverableError
// x-ref: https://github.com/facebook/react/blob/d4bc16a7d69eb2ea38a88c8ac0b461d5f72cdcab/packages/react-dom/src/client/ReactDOMRoot.js#L83
const defaultOnRecoverableError = typeof reportError === "function" ? // emulating an uncaught JavaScript error.
reportError : (error)=>{
window.console.error(error);
};
// Skip certain custom errors which are not expected to be reported on client
if (err.digest === NEXT_DYNAMIC_NO_SSR_CODE) return;
defaultOnRecoverableError(err);
}
//# sourceMappingURL=on-recoverable-error.js.map