Anton Gunkin
Anton Gunkin
Hey @mydea ! > Do you mean that with version 8.25.0 it worked for you, and then not anymore? Correct! Only 8.25.0 (and below) works well. And yes, `enableTracing: false`...
@mydea Thanks for checking! What I see in [8.26.0](https://github.com/getsentry/sentry-javascript/releases/tag/8.26.0): - https://github.com/getsentry/sentry-javascript/pull/13324 - https://github.com/getsentry/sentry-javascript/issues/13010 Plus extra non-documented options here: https://github.com/getsentry/sentry-javascript/pull/13323/files#diff-338f827c7c3625622b0b38a45cd130517a9f872f6de2d354a7c80785462dcc3dR122 (which also didn't help)
Hey @mydea and @lforst , thanks again for checking! I just tried different project with same next and sdk versions and it works without any changes... So I can confirm...
Ok, fixed, but it was weird. I had a lazy (next/dynamic) component with additionally lazy session replays ES6 import: ``` import('@sentry/nextjs').then((lazyLoadedSentry) => { Sentry.addIntegration( lazyLoadedSentry.replayIntegration({ ... }), ); }); ```...