@sentry/wizard 2.2.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,11 @@ const moduleExports = {
|
|
|
16
16
|
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/#use-hidden-source-map
|
|
17
17
|
// for more information.
|
|
18
18
|
hideSourceMaps: true,
|
|
19
|
+
|
|
20
|
+
// This option will automatically provide performance monitoring for Next.js
|
|
21
|
+
// data-fetching methods and API routes, making the manual wrapping of API
|
|
22
|
+
// routes via `withSentry` redundant.
|
|
23
|
+
autoInstrumentServerFunctions: true,
|
|
19
24
|
},
|
|
20
25
|
};
|
|
21
26
|
|
package/package.json
CHANGED
|
@@ -16,6 +16,11 @@ const moduleExports = {
|
|
|
16
16
|
// https://docs.sentry.io/platforms/javascript/guides/nextjs/manual-setup/#use-hidden-source-map
|
|
17
17
|
// for more information.
|
|
18
18
|
hideSourceMaps: true,
|
|
19
|
+
|
|
20
|
+
// This option will automatically provide performance monitoring for Next.js
|
|
21
|
+
// data-fetching methods and API routes, making the manual wrapping of API
|
|
22
|
+
// routes via `withSentry` redundant.
|
|
23
|
+
autoInstrumentServerFunctions: true,
|
|
19
24
|
},
|
|
20
25
|
};
|
|
21
26
|
|