Luca Forstner
Luca Forstner
> could it be because of the compression? Very unlikely. If you unzip one of the **deployed** archives. What do the first lines in the .ts files look like? You...
You have some dependency, node setting or mechanism that messes with stack traces. The recorded stack trace in the event has a `.ts` file but now in the screenshot and...
If you want to see proper stack traces in sentry you need to disable `source-map-support` in production.
You need to keep the source map generation! You just need to remove your dependency on `source-map-support`: https://www.npmjs.com/package/source-map-support
Yeah I unfortunately don't know how to assist further here. Your setup is patching error stack traces and our SDK needs the original ones. There is nothing we can do...
When you send errors to Sentry the stack traces should contain .js paths. Sentry then uses the source maps and source files you uploaded to turn them back into their...
I just realized you are using the `@ntegral/nestjs-sentry` package. This is not something we maintain. That package likely doesn't support debug IDs yet, so maybe you want to raise an...
Hi, which Next.js version are you on?
Also, would anybody be able to share a minimal reproduction example that runs into this? Thank you!
Hm, @alvis would you be able to provide a small reproduction repository?