We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfd2134 commit 4547548Copy full SHA for 4547548
1 file changed
packages/node/src/sdk/index.ts
@@ -64,15 +64,16 @@ export function getDefaultIntegrationsWithoutPerformance(): Integration[] {
64
// Global Handlers
65
onUncaughtExceptionIntegration(),
66
onUnhandledRejectionIntegration(),
67
- rewriteFramesIntegration({
68
- root: process.cwd(),
69
- }),
70
// Event Info
71
contextLinesIntegration(),
72
localVariablesIntegration(),
73
nodeContextIntegration(),
74
childProcessIntegration(),
75
processSessionIntegration(),
+ // This has to run after the other integrations, because it rewrites the frames
+ rewriteFramesIntegration({
+ root: process.cwd(),
76
+ }),
77
...getCjsOnlyIntegrations(),
78
];
79
}
0 commit comments