7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
export async function register() {
|
|
if (process.env.NEXT_RUNTIME === 'nodejs') {
|
|
const { initializeZen } = await import('@zen/core');
|
|
await initializeZen();
|
|
}
|
|
}
|