Replies: 2 comments 3 replies
-
The |
Beta Was this translation helpful? Give feedback.
0 replies
-
@rchl it is export source maps, but JS. I need TS. ['@nuxtjs/sentry', {ignore: ['node_modules']}] sentry: {
dsn: process.env.SENTRY_DSN,
serverConfig: {
dsn: process.env.SENTRY_RELAY_DSN,
},
lazy: false,
disabled: ('production' !== process.env.NODE_ENV),
tracing: {
tracesSampleRate: ('production' === process.env.NODE_ENV ? 0.01 : 1.0),
vueOptions: {
tracing: true,
tracingOptions: {
hooks: ['mount', 'update'],
timeout: 2000,
trackComponents: true,
},
},
browserOptions: {},
},
config: {
environment: process.env.SENTRY_ENV,
},
publishRelease: {
url: process.env.SENTRY_HOST,
authToken: process.env.SENTRY_AUTH,
org: process.env.SENTRY_ORG_SLUG,
project: process.env.SENTRY_PROJ_SLUG,
setCommits: {
auto: true,
},
},
}, |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi.
How to provide TypeScript source map in publishRelease?
Beta Was this translation helpful? Give feedback.
All reactions