Is there an existing issue for this?
How do you use Sentry?
Self-hosted/on-premise
Which package are you using?
@sentry/react
SDK Version
7.7.0
Framework Version
No response
Link to Sentry event
No response
Steps to Reproduce
- When upgrading to v7 and above, Edge 16/17/18 and iOS 10 safari would no longer load our pages.
- So I set webpack to include @sentry packages via
exclude: /node_modules\/(?!(@sentry)\/).*/, (we normally exclude node_modules). Our @babel/present-env target is targets: { esmodules: true },
- After this new build, those browsers started loading our pages okay.
- When I view the response to
captureMessage it appears to work fine, I get an event_id returned.
Expected Result
I expect the network calls to be made to register these event_id's on all browsers
Actual Result
No network request is made in Edge 16/17/18 or iOS 10 Safari, so these events never get to Sentry.
In more modern browsers I do get the network requests and they work as normal in Sentry.
Internal tracking:
Is there an existing issue for this?
How do you use Sentry?
Self-hosted/on-premise
Which package are you using?
@sentry/react
SDK Version
7.7.0
Framework Version
No response
Link to Sentry event
No response
Steps to Reproduce
exclude: /node_modules\/(?!(@sentry)\/).*/,(we normally exclude node_modules). Our@babel/present-envtarget istargets: { esmodules: true },captureMessageit appears to work fine, I get an event_id returned.Expected Result
I expect the network calls to be made to register these event_id's on all browsers
Actual Result
No network request is made in Edge 16/17/18 or iOS 10 Safari, so these events never get to Sentry.
In more modern browsers I do get the network requests and they work as normal in Sentry.
Internal tracking:
transpileClientSDKoption #5472)transpileClientSDKoption and build config page sentry-docs#5350)