Perplexica/src/instrumentation.ts

7 lines
193 B
TypeScript
Raw Normal View History

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