From 8ad1d5929a0967b5af76de248cae063f84437043 Mon Sep 17 00:00:00 2001 From: Patrick Fic <> Date: Thu, 21 Oct 2021 12:02:02 -0700 Subject: [PATCH] Reduce Sentry Logging. --- client/src/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/index.js b/client/src/index.js index 3aea24aab..361efcad4 100644 --- a/client/src/index.js +++ b/client/src/index.js @@ -23,6 +23,11 @@ Dinero.globalRoundingMode = "HALF_EVEN"; if (process.env.NODE_ENV !== "development") { Sentry.init({ dsn: "https://fd7e89369b6b4bdc9c6c4c9f22fa4ee4@o492140.ingest.sentry.io/5651027", + ignoreErrors: [ + "ResizeObserver loop", + "Module specifier, 'fs' does not start", + "Module specifier, 'zlib' does not start with", + ], integrations: [ // new Integrations.BrowserTracing(), // new Sentry.Integrations.Breadcrumbs({ console: true }),