You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes there are errors we don't want to track because they are benign (for example: WICG/resize-observer#38 (comment)"ResizeObserver loop limit exceeded")
ignoreErrors
Very often, you will come across specific errors that are a result of something other than your application, or errors that you’re completely not interested in. ignoreErrors is a list of these messages to be filtered out before being sent to Sentry as either regular expressions or strings. When using strings, they’ll partially match the messages, so if you need to achieve an exact match, use RegExp patterns instead.
The text was updated successfully, but these errors were encountered:
Sometimes there are errors we don't want to track because they are benign (for example: WICG/resize-observer#38 (comment)
"ResizeObserver loop limit exceeded"
)Is there a way to ignore errors like Sentry does it? https://docs.sentry.io/clients/javascript/config/
The text was updated successfully, but these errors were encountered: