diff --git a/tavla/helm/tavla/values.yaml b/tavla/helm/tavla/values.yaml index 64d13dcb9..3145241ae 100644 --- a/tavla/helm/tavla/values.yaml +++ b/tavla/helm/tavla/values.yaml @@ -30,7 +30,7 @@ common: name: sentry key: auth-token - - name: SENTRY_DSN_URL + - name: NEXT_PUBLIC_SENTRY_DSN_URL valueFrom: secretKeyRef: name: sentry diff --git a/tavla/sentry.client.config.ts b/tavla/sentry.client.config.ts index f8b469c28..3ec06e4bc 100644 --- a/tavla/sentry.client.config.ts +++ b/tavla/sentry.client.config.ts @@ -5,7 +5,7 @@ import * as Sentry from '@sentry/nextjs' Sentry.init({ - dsn: process.env.SENTRY_DSN_URL, + dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_URL, tracesSampleRate: 1, diff --git a/tavla/sentry.edge.config.ts b/tavla/sentry.edge.config.ts index efdc56a73..1910853f6 100644 --- a/tavla/sentry.edge.config.ts +++ b/tavla/sentry.edge.config.ts @@ -6,7 +6,7 @@ import * as Sentry from '@sentry/nextjs' Sentry.init({ - dsn: process.env.SENTRY_DSN_URL, + dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_URL, tracesSampleRate: 1, diff --git a/tavla/sentry.server.config.ts b/tavla/sentry.server.config.ts index 771ce89a3..9cd4ae35a 100644 --- a/tavla/sentry.server.config.ts +++ b/tavla/sentry.server.config.ts @@ -5,7 +5,7 @@ import * as Sentry from '@sentry/nextjs' Sentry.init({ - dsn: process.env.SENTRY_DSN_URL, + dsn: process.env.NEXT_PUBLIC_SENTRY_DSN_URL, tracesSampleRate: 1,