File size: 376 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 |
export async function register() {
if (process.env.NEXT_RUNTIME === 'edge') {
console.log('instrumentation hook on the edge')
} else if (process.env.NEXT_RUNTIME === 'nodejs') {
console.log('instrumentation hook on nodejs')
const { register } = await import('./instrumentation.node')
await register()
} else {
await require('this should fail')
}
}
|