Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/db/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
generator client {
provider = "prisma-client-js"
previewFeatures = ["postgresqlExtensions"]
previewFeatures = ["postgresqlExtensions", "tracing"]
}

generator json {
Expand Down
2 changes: 2 additions & 0 deletions sentry.edge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ Sentry.init({
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,

integrations: [Sentry.prismaIntegration()],

beforeSend(event) {
// Filter out errors during the Next.js build phase
if (process.env.NEXT_PHASE === "phase-production-build") {
Expand Down
2 changes: 2 additions & 0 deletions sentry.server.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ Sentry.init({
// Setting this option to true will print useful information to the console while you're setting up Sentry.
debug: false,

integrations: [Sentry.prismaIntegration()],

beforeSend(event) {
// Filter out errors during the Next.js build phase
if (process.env.NEXT_PHASE === "phase-production-build") {
Expand Down
Loading