mirror of
https://github.com/makeplane/plane.git
synced 2025-12-24 23:59:40 +01:00
10 lines
224 B
TypeScript
10 lines
224 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');
|
||
|
|
}
|
||
|
|
}
|