15 lines
415 B
JavaScript
15 lines
415 B
JavaScript
![]() |
// eslint-disable-next-line @typescript-eslint/no-var-requires
|
||
|
const { withSentryConfig } = require('@sentry/nextjs')
|
||
|
|
||
|
const moduleExports = {
|
||
|
// Your existing module.exports
|
||
|
}
|
||
|
|
||
|
const sentryWebpackPluginOptions = {
|
||
|
silent: true,
|
||
|
// For all available options, see:
|
||
|
// https://github.com/getsentry/sentry-webpack-plugin#options.
|
||
|
}
|
||
|
|
||
|
module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions)
|