Merged in chore/upgrade-sentry (pull request #3191)

feat: upgrade sentry and use metrics

* feat: upgrade sentry and use metrics

* remove ununsed deps

* rename span

* .


Approved-by: Linus Flood
This commit is contained in:
Joakim Jäderberg
2025-11-20 13:24:53 +00:00
parent 5eaaea527f
commit b1d7fbad88
14 changed files with 510 additions and 470 deletions

View File

@@ -0,0 +1,9 @@
import * as Sentry from "@sentry/nextjs"
import { middleware } from ".."
export const sentryMiddleware = middleware(
Sentry.trpcMiddleware({
attachRpcInput: true,
})
)