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
|
|
|
}
|
2024-11-16 22:00:22 +01:00
|
|
|
}
|