|
I'm trying to filter errors coming from chrome extensions or other CDN that's added to the app. From looking at the document, it suggested to use webpack plugin directly in nextjs. But, in the manual setup, it asks to use I've also tried to see if there is a key Any feedback is greatly appreciated! |
Answered by
canopy-cj
Aug 21, 2024
Replies: 1 comment 2 replies
|
Actually solved it adding below in sentryConfig in export default withSentryConfig(nextConfig, {
org: "...",
project: "...",
unstable_sentryWebpackPluginOptions: {
applicationKey: 'YOUR_APPLICATION_KEY',
},
}); |
2 replies
Answer selected by
canopy-cj
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Actually solved it adding below in sentryConfig in
next.config.js