mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
9 lines
223 B
TypeScript
9 lines
223 B
TypeScript
export async function register() {
|
|
if (process.env.NEXT_RUNTIME === 'nodejs') {
|
|
// Node.js specific instrumentation
|
|
}
|
|
|
|
if (process.env.NEXT_RUNTIME === 'edge') {
|
|
// Edge runtime specific instrumentation
|
|
}
|
|
}
|