23 lines
474 B
TypeScript
23 lines
474 B
TypeScript
import * as Sentry from '@sentry/vue'
|
|
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
const config = useRuntimeConfig()
|
|
const dsn = config.public.sentryDsn
|
|
|
|
if (!dsn) {
|
|
return
|
|
}
|
|
|
|
Sentry.init({
|
|
app: nuxtApp.vueApp,
|
|
dsn,
|
|
integrations: [
|
|
Sentry.browserTracingIntegration({ router: nuxtApp.$router }),
|
|
Sentry.replayIntegration()
|
|
],
|
|
tracesSampleRate: 0.1,
|
|
replaysSessionSampleRate: 0.1,
|
|
replaysOnErrorSampleRate: 1.0
|
|
})
|
|
})
|