chore: 🔧 Ignore Resize exceeded error in Sentry
This commit is contained in:
@ -6,4 +6,5 @@ import * as Sentry from '@sentry/nextjs'
|
|||||||
|
|
||||||
Sentry.init({
|
Sentry.init({
|
||||||
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
||||||
|
ignoreErrors: ['ResizeObserver loop limit exceeded'],
|
||||||
})
|
})
|
||||||
|
@ -6,4 +6,5 @@ import * as Sentry from '@sentry/nextjs'
|
|||||||
|
|
||||||
Sentry.init({
|
Sentry.init({
|
||||||
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
||||||
|
ignoreErrors: ['ResizeObserver loop limit exceeded'],
|
||||||
})
|
})
|
||||||
|
@ -6,10 +6,5 @@ import * as Sentry from '@sentry/nextjs'
|
|||||||
|
|
||||||
Sentry.init({
|
Sentry.init({
|
||||||
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
||||||
// Adjust this value in production, or use tracesSampler for greater control
|
ignoreErrors: ['ResizeObserver loop limit exceeded'],
|
||||||
tracesSampleRate: 1.0,
|
|
||||||
// ...
|
|
||||||
// Note: if you want to override the automatic release value, do not set a
|
|
||||||
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
|
|
||||||
// that it will also get attached to your source maps
|
|
||||||
})
|
})
|
||||||
|
@ -6,10 +6,5 @@ import * as Sentry from '@sentry/nextjs'
|
|||||||
|
|
||||||
Sentry.init({
|
Sentry.init({
|
||||||
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
|
||||||
// Adjust this value in production, or use tracesSampler for greater control
|
ignoreErrors: ['ResizeObserver loop limit exceeded'],
|
||||||
tracesSampleRate: 1.0,
|
|
||||||
// ...
|
|
||||||
// Note: if you want to override the automatic release value, do not set a
|
|
||||||
// `release` value here - use the environment variable `SENTRY_RELEASE`, so
|
|
||||||
// that it will also get attached to your source maps
|
|
||||||
})
|
})
|
||||||
|
Reference in New Issue
Block a user