Files

7 lines
170 B
TypeScript
Raw Permalink Normal View History

2025-05-16 15:54:17 +02:00
export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
const init = await import("@/utils/init");
2025-08-07 15:46:41 +02:00
await init.init();
2025-05-16 15:54:17 +02:00
}
}