@nitra/vite-boot 3.5.1 → 3.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sentry.js +1 -1
package/package.json
CHANGED
package/src/sentry.js
CHANGED
|
@@ -10,7 +10,7 @@ export const bootSentry = (app, tracing = 0) => {
|
|
|
10
10
|
app,
|
|
11
11
|
dsn: import.meta.env.VITE_SENTRY,
|
|
12
12
|
release: __GITHUB_SHA__,
|
|
13
|
-
ignoreErrors: ['ResizeObserver loop limit exceeded'],
|
|
13
|
+
ignoreErrors: ['ResizeObserver loop limit exceeded', 'Apollo client with id default not found'],
|
|
14
14
|
integrations: []
|
|
15
15
|
}
|
|
16
16
|
|