mirror of
https://github.com/gethomepage/homepage.git
synced 2026-09-17 01:25:52 -07:00
8 lines
154 B
JavaScript
8 lines
154 B
JavaScript
import { applyNextAuthEnv } from "utils/env";
|
|
|
|
export function register() {
|
|
if (process.env.NEXT_RUNTIME !== "nodejs") return;
|
|
|
|
applyNextAuthEnv();
|
|
}
|