0
0
mirror of https://github.com/makeplane/plane synced 2024-06-14 14:31:34 +00:00
plane/web/instrumentation.ts

10 lines
224 B
TypeScript
Raw Normal View History

2024-05-27 09:32:03 +00:00
export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
await import("./sentry.server.config");
2024-05-27 09:32:03 +00:00
}
if (process.env.NEXT_RUNTIME === "edge") {
await import("./sentry.edge.config");
2024-05-27 09:32:03 +00:00
}
}