Files
Neon-Desk/instrumentation.ts
2026-02-26 13:26:18 -05:00

9 lines
186 B
TypeScript

export async function register() {
if (process.env.NEXT_RUNTIME === 'edge') {
return;
}
const { getWorld } = await import('workflow/runtime');
await getWorld().start?.();
}