-
Notifications
You must be signed in to change notification settings - Fork 111
Closed
Labels
Description
What's wrong with my config?
SSR tracing won't working, so I separated DSN for easy debug.
Version
@nuxtjs/sentry: 7.0.4
nuxt: 2.15.8
Sentry configuration
sentry: {
dsn: true, // for canInitialize
clientConfig: {
dsn: process.env.SENTRY_CLIENT_DSN, // VueJS project
},
serverConfig: {
dsn: process.env.SENTRY_SERVER_DSN, // NodeJS project
transport: makeNodeTransport,
},
lazy: false,
disabled: false,
tracing: {
tracesSampleRate: 1.0,
vueOptions: {
tracing: true,
tracingOptions: {
hooks: ['mount', 'update'],
timeout: 2000,
trackComponents: true
}
},
browserOptions: {}
},
config: {
environment: 'codesandbox',
},
}
Reproduction Link
(I can provide access for trial sentry projects if needed)
Steps to reproduce
Load page, then move to about page
What is Expected?
Both client and server tracing is collected
What is actually happening?
Only client tracing is collected
Reactions are currently unavailable

