Skip to content

Commit 679f512

Browse files
committed
fix(next-config): add errorHandler function to sentry webpack options
1 parent e782dc1 commit 679f512

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

next.config.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ const nextConfig = {
1616
};
1717

1818
module.exports = process.env.SENTRY_PROJECT
19-
? withSentryConfig(nextConfig, { silent: true })
19+
? withSentryConfig(nextConfig, {
20+
silent: true,
21+
errorHandler: (err) => {
22+
console.warn(err);
23+
},
24+
})
2025
: nextConfig;
2126

2227
// Redirects from old Drupal website to Next.js based website.

0 commit comments

Comments
 (0)