9 lines
186 B
TypeScript
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?.();
|
|
}
|