Initial boiler plate project
This commit is contained in:
14
node_modules/next/dist/esm/client/on-recoverable-error.js
generated
vendored
Normal file
14
node_modules/next/dist/esm/client/on-recoverable-error.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
import { isBailoutToCSRError } from "../shared/lib/lazy-dynamic/bailout-to-csr";
|
||||
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 (isBailoutToCSRError(err)) return;
|
||||
defaultOnRecoverableError(err);
|
||||
}
|
||||
|
||||
//# sourceMappingURL=on-recoverable-error.js.map
|
||||
Reference in New Issue
Block a user