mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-05 20:21:50 +02:00
9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
export async function register() {
|
|
if (process.env.NEXT_RUNTIME === "nodejs") {
|
|
await import("../sentry.server.config");
|
|
}
|
|
|
|
if (process.env.NEXT_RUNTIME === "edge") {
|
|
await import("../sentry.edge.config");
|
|
}
|
|
}
|