Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
matmut7 committed Dec 4, 2023
1 parent f02253f commit 5d2745a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion sentry.client.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import * as Sentry from "@sentry/nextjs"

Sentry.init({})
Sentry.init({
release: process.env.NEXT_PUBLIC_SENTRY_RELEASE,
environment: process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT,
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
})
6 changes: 5 additions & 1 deletion sentry.edge.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import * as Sentry from "@sentry/nextjs"

Sentry.init({})
Sentry.init({
release: process.env.NEXT_PUBLIC_SENTRY_RELEASE,
environment: process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT,
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
})
6 changes: 5 additions & 1 deletion sentry.server.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import * as Sentry from "@sentry/nextjs"

Sentry.init({})
Sentry.init({
release: process.env.NEXT_PUBLIC_SENTRY_RELEASE,
environment: process.env.NEXT_PUBLIC_SENTRY_ENVIRONMENT,
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
})

0 comments on commit 5d2745a

Please sign in to comment.