mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-29 18:59:20 +01:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import { createBooleanSchema, createEnv } from "@homarr/core/infrastructure/env";
|
|
|
|
export const env = createEnv({
|
|
server: {
|
|
UNSAFE_ENABLE_MOCK_INTEGRATION: createBooleanSchema(false),
|
|
},
|
|
experimental__runtimeEnv: process.env,
|
|
});
|