mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
10 lines
202 B
JavaScript
10 lines
202 B
JavaScript
export async function register() {
|
|
if (
|
|
process.env.NEXT_RUNTIME === 'nodejs' &&
|
|
process.env.NODE_ENV === 'production'
|
|
) {
|
|
await require('pino');
|
|
await require('next-logger');
|
|
}
|
|
}
|