mirror of
https://github.com/calli-eve/eve-pi.git
synced 2026-02-13 19:28:49 +01:00
10 lines
226 B
TypeScript
10 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');
|
|
}
|
|
}
|