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 8e515a8 commit f338983Copy full SHA for f338983
1 file changed
packages/nextjs/src/config/withSentryConfig/getFinalConfigObjectUtils.ts
@@ -90,6 +90,7 @@ export function maybeCreateRouteManifest(
90
userSentryOptions: SentryBuildOptions,
91
): RouteManifest | undefined {
92
// Handle deprecated option with warning
93
+ // eslint-disable-next-line deprecation/deprecation
94
if (userSentryOptions.disableManifestInjection) {
95
// eslint-disable-next-line no-console
96
console.warn(
@@ -98,6 +99,7 @@ export function maybeCreateRouteManifest(
98
99
}
100
101
// Check if manifest injection is disabled (new option takes precedence)
102
103
if (userSentryOptions.routeManifestInjection === false || userSentryOptions.disableManifestInjection) {
104
return undefined;
105
0 commit comments