-
Notifications
You must be signed in to change notification settings - Fork 111
Open
Labels
Description
Version
@nuxtjs/sentry: 8.0.8
nuxt: 2.17.3
Sentry configuration
publicRuntimeConfig: {
sentryDsn: process.env.OPTIMISER_WEB_SENTRY_DSN,
sentryEnv: process.env.SENTRY_ENVIRONMENT
},
...
sentry: {
dsn: process.env.OPTIMISER_WEB_SENTRY_DSN,
// disabled: process.env.SENTRY_ENVIRONMENT === 'development',
tracePropagationTargets: [new RegExp(`^${process.env.API_URL}`)],
tracesSampleRate: 1.0
},
Reproduction Link / Steps to reproduce
I don't think it's possible to reproduce
What is Expected?
Catching errors from Nuxt Vue 2 on Staging Env with Sentry
What is actually happening?
Everything is working well locally in the development environment. Still, when I'm deploying to the staging environment (Azure) it doesn't work - I'm throwing FE errors but they are not listed on Centry.
I've made sure I have all the variables on my staging env - not only by echoing them in SSH but also by console logging them in my FE app. I've also printed a current Sentry client reference.
It says that it's disabled, even if I got rid of "disabled" like from the Sentry configuration when deploying to staging.
Do you have any ideas about what might be disabling it?