Files
koc-loop/instrumentation.ts

6 lines
172 B
TypeScript
Raw Permalink Normal View History

export async function register() {
if (process.env.NEXT_RUNTIME !== "nodejs") return;
const { startScheduler } = await import("./lib/scheduler");
startScheduler();
}