Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
export 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')
} else {
require('this should fail')
}
}