6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
export async function register() {
|
|
if (process.env.NEXT_RUNTIME === 'nodejs') {
|
|
// Import error suppression when the server starts
|
|
await import('./lib/utils/errorSuppression');
|
|
}
|
|
}
|