Closed as not planned
Description
Is there an existing issue for this?
- I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- I have reviewed the documentation https://docs.sentry.io/
- I am using the latest SDK release https://github.com/getsentry/sentry-javascript/releases
How do you use Sentry?
Self-hosted/on-premise
Which package are you using?
@sentry/nextjs
SDK Version
7.22.0
Framework Version
No response
Link to Sentry event
No response
Steps to Reproduce
I believe it has something to do with
Have a custom webpack config:
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
...
sentry: {
disableClientWebpackPlugin: true,
disableServerWebpackPlugin: true,
},
webpack(config, { dev }) {
console.log('hi');
return config;
},
};
Expected Result
Echoes "hi" since it's picked up by Next
Actual Result
My webpack config is ignored