fix(nextjs): Correctly handle functional next config in withSentryConfig
#3698
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
To set up Sentry, we tell users to end their
next.config.js
files withmodule.exports = withSentryConfig(moduleExports, SentryWebpackPluginOptions);
,where
moduleExports
is what was the user'smodule.exports
before they added Sentry - in other words, all of their other config for their next app.According to the next docs, that config can take the form either of an object or a function which returns an object. We've been correctly handling the first case, but not the second. This fixes that by checking if
moduleExports
is a function, and if so, running that function before merging in the user config, so that in either case we know we're merging in an object.Fixes https://github.com/getsentry/sentry-docs/issues/3723.
Fixes ricokahler/next-plugin-preval#42.