Files
HabitTrove/instrumentation.ts
2025-02-18 23:59:41 -05:00

7 lines
146 B
TypeScript

import { init } from '@/lib/env.server' // startup env var check
export function register() {
if (typeof window === "undefined") {
init()
}
}