mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-19 21:17:04 +01:00
10 lines
258 B
TypeScript
10 lines
258 B
TypeScript
import { createEnv } from "@homarr/env";
|
|
import { createBooleanSchema } from "@homarr/env/schemas";
|
|
|
|
export const env = createEnv({
|
|
server: {
|
|
UNSAFE_ENABLE_MOCK_INTEGRATION: createBooleanSchema(false),
|
|
},
|
|
experimental__runtimeEnv: process.env,
|
|
});
|