Noah Gilmore

Results 33 comments of Noah Gilmore

Also encountering this! In our case, we're using @cloudflare/next-on-pages, which results in errors related to inconsistencies between the cloudflare workers and DOM runtime APIs in Next JS apps. I put...

Chiming in that this would be great to have as well! Either a way to expose beforeSend, or a way to expose adding custom context to errors

The workaround for now is to use `beforeSend` as mentioned above: ```ts void app.register(fastifySentryPlugin, { dsn: "...", ..., beforeSend(event, hint) { // Can do custom processing based on `hint.originalException` return...