You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Skip ModuleBuildError and ModuleNotFoundError, as it will be sent through onBuildError callback.
37
-
// This is to avoid same error as different type showing up on client to cause flashing.
38
-
if(
39
-
error.name!=='ModuleBuildError'&&
40
-
error.name!=='ModuleNotFoundError'
41
-
){
42
-
Bus.emit({
43
-
type: ACTION_UNHANDLED_ERROR,
44
-
reason: error,
45
-
frames: parseStack(error.stack),
46
-
componentStackFrames,
47
-
})
48
-
}
49
-
}
50
-
51
-
letorigConsoleError=console.error
52
-
functionnextJsHandleConsoleError(...args: any[]){
53
-
// See https://github.com/facebook/react/blob/d50323eb845c5fde0d720cae888bf35dedd05506/packages/react-reconciler/src/ReactFiberErrorLogger.js#L78
0 commit comments