13 lines
263 B
TypeScript
13 lines
263 B
TypeScript
import * as Sentry from '@sentry/nuxt'
|
|
|
|
const config = useRuntimeConfig()
|
|
|
|
Sentry.init({
|
|
dsn: config.public.sentryDsn,
|
|
environment: process.env.NODE_ENV || 'production',
|
|
integrations: [
|
|
Sentry.browserTracingIntegration()
|
|
],
|
|
tracesSampleRate: 0.1
|
|
})
|