You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'[@sentry/nextjs] You turned off the `experimental.instrumentationHook` option. Note that Sentry will not be initialized if you did not set it up inside `instrumentation.(js|ts)`.',
'[@sentry/nextjs] You turned off the `experimental.instrumentationHook` option. Note that Sentry will not be initialized if you did not set it up inside `instrumentation.(js|ts)`.',
191
+
);
220
192
}
221
-
}else{
193
+
incomingUserNextConfigObject.experimental={
194
+
instrumentationHook: true,
195
+
...incomingUserNextConfigObject.experimental,
196
+
};
197
+
}elseif(!nextJsVersion){
222
198
// If we cannot detect a Next.js version for whatever reason, the sensible default is to set the `experimental.instrumentationHook`, even though it may create a warning.
223
199
if(
224
200
incomingUserNextConfigObject.experimental&&
@@ -261,7 +237,7 @@ function getFinalConfigObject(
0 commit comments