diff --git a/examples/with-sentry/next.config.js b/examples/with-sentry/next.config.js index 3ab525185afe..c5047243cc2b 100644 --- a/examples/with-sentry/next.config.js +++ b/examples/with-sentry/next.config.js @@ -9,7 +9,9 @@ const moduleExports = { // Your existing module.exports } -const sentryWebpackPluginOptions = { +// Make sure adding Sentry options is the last code to run before exporting, to +// ensure that your source maps include changes from all other Webpack plugins +module.exports = withSentryConfig(moduleExports, { // Additional config options for the Sentry Webpack plugin. Keep in mind that // the following options are set automatically, and overriding them is not // recommended: @@ -17,8 +19,4 @@ const sentryWebpackPluginOptions = { // urlPrefix, include, ignore // For all available options, see: // https://github.com/getsentry/sentry-webpack-plugin#options. -} - -// Make sure adding Sentry options is the last code to run before exporting, to -// ensure that your source maps include changes from all other Webpack plugins -module.exports = withSentryConfig(moduleExports, sentryWebpackPluginOptions) +})