Skip to content

Commit

Permalink
🔧 Enable sentry tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Sep 11, 2024
1 parent a1e52ed commit 906941a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,10 +161,19 @@ export default {
config: {
ignoreErrors: ['WebAssembly.instantiate'],
},
tracing: {
tracesSampleRate: IS_TESTNET ? 1.0 : 0.1,
browserTracing: {},
vueOptions: {
trackComponents: true,
},
vueRouterInstrumentationOptions: {
routeLabel: 'name',
},
},
clientIntegrations: {
/* default integrations will still be added due to deep-merge */
ReportingObserver: false, // reporting is very noisy on CSP violation.
CaptureConsole: { levels: ['error'] },
},
},
sitemap: {
Expand Down

0 comments on commit 906941a

Please sign in to comment.