Hi! 👋 Firstly, thanks for your work on this project! 🙂 Today I used [patch-package](https://github.com/ds300/patch-package) to patch `@sentry/nextjs@8.13.0` for the project I'm working on. <!-- 🔺️🔺️🔺️ PLEASE REPLACE THIS BLOCK with a description of your problem, and any other relevant context 🔺️🔺️🔺️ --> Here is the diff that solved my problem: ```diff diff --git a/node_modules/@sentry/nextjs/build/types/config/types.d.ts b/node_modules/@sentry/nextjs/build/types/config/types.d.ts index 48a1953..f9386d2 100644 --- a/node_modules/@sentry/nextjs/build/types/config/types.d.ts +++ b/node_modules/@sentry/nextjs/build/types/config/types.d.ts @@ -1,5 +1,6 @@ import type { GLOBAL_OBJ } from '@sentry/utils'; import type { SentryWebpackPluginOptions } from '@sentry/webpack-plugin'; +// @ts-ignore import type { DefinePlugin, WebpackPluginInstance } from 'webpack'; export type { WebpackPluginInstance }; export type ExportedNextConfig = NextConfigObject | NextConfigFunction; ``` <em>This issue body was [partially generated by patch-package](https://github.com/ds300/patch-package/issues/296).</em>