Skip to content

Commit

Permalink
chore: improve instrumentation deps (#16899)
Browse files Browse the repository at this point in the history
* Remove Sentry from direct import in instrumentation file

* chore: Exclude Sentry configs when not needed
  • Loading branch information
emrysal authored Oct 1, 2024
1 parent 1377f1a commit 0d7f560
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 11 deletions.
16 changes: 5 additions & 11 deletions apps/web/instrumentation.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
import * as Sentry from "@sentry/nextjs";

export function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
});
export async function register() {
if (process.env.NEXT_PUBLIC_SENTRY_DSN && process.env.NEXT_RUNTIME === "nodejs") {
await import("./sentry.server.config");
}

if (process.env.NEXT_RUNTIME === "edge") {
Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
});
if (process.env.NEXT_PUBLIC_SENTRY_DSN && process.env.NEXT_RUNTIME === "edge") {
await import("./sentry.edge.config");
}
}
5 changes: 5 additions & 0 deletions apps/web/sentry.edge.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
});
5 changes: 5 additions & 0 deletions apps/web/sentry.server.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as Sentry from "@sentry/nextjs";

Sentry.init({
dsn: process.env.NEXT_PUBLIC_SENTRY_DSN,
});

0 comments on commit 0d7f560

Please sign in to comment.