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 54a8386 commit 8c69f32Copy full SHA for 8c69f32
src/sentry.client.config.ts
@@ -7,15 +7,15 @@ if (sharedSentryConfig.dsn) {
7
Sentry.init({
8
...sharedSentryConfig,
9
integrations: [
10
- Sentry.browserProfilingIntegration(),
11
- Sentry.captureConsoleIntegration(),
12
- Sentry.consoleLoggingIntegration(),
13
- Sentry.graphqlClientIntegration({ endpoints: [/\/graphql$/] }),
14
- Sentry.httpClientIntegration(),
15
- Sentry.piniaIntegration(usePinia()),
16
- Sentry.replayIntegration(),
17
- Sentry.zodErrorsIntegration(),
18
-
+ // Sentry.browserProfilingIntegration(),
+ // Sentry.captureConsoleIntegration(),
+ // Sentry.consoleLoggingIntegration(),
+ // Sentry.graphqlClientIntegration({ endpoints: [/\/graphql$/] }),
+ // Sentry.httpClientIntegration(),
+ // Sentry.piniaIntegration(usePinia()),
+ // Sentry.replayIntegration(),
+ // Sentry.zodErrorsIntegration(),
+ //
19
// // enable if more components or hooks should be tracked
20
// Sentry.vueIntegration({
21
// tracingOptions: {
src/sentry.server.config.ts
@@ -22,7 +22,7 @@ const sharedSentryConfig = getSharedSentryConfig({
22
if (sharedSentryConfig.dsn) {
23
24
25
- integrations: [Sentry.consoleLoggingIntegration()],
+ // integrations: [Sentry.consoleLoggingIntegration()],
26
})
27
} else {
28
console.warn(
0 commit comments