-
| 
         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!  | 
  
Beta Was this translation helpful? Give feedback.
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',
  },
}); | 
  
Beta Was this translation helpful? Give feedback.
Actually solved it adding below in sentryConfig in
next.config.js