We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5c7ef9 commit bf3c161Copy full SHA for bf3c161
packages/nextjs/src/utils/config.ts
@@ -128,7 +128,7 @@ export function withSentryConfig(
128
// warn if any of the default options for the webpack plugin are getting overridden
129
const webpackPluginOptionOverrides = Object.keys(defaultWebpackPluginOptions)
130
.concat('dryrun')
131
- .map(key => key in Object.keys(providedWebpackPluginOptions));
+ .filter(key => key in Object.keys(providedWebpackPluginOptions));
132
if (webpackPluginOptionOverrides.length > 0) {
133
logger.warn(
134
'[Sentry] You are overriding the following automatically-set SentryWebpackPlugin config options:\n' +
0 commit comments