14 lines
277 B
TypeScript
14 lines
277 B
TypeScript
import { getEnvironmentVariable } from "@platform/config/environment.ts";
|
|
import z from "zod";
|
|
|
|
export const config = {
|
|
level: getEnvironmentVariable({
|
|
key: "LOG_LEVEL",
|
|
type: z.string(),
|
|
fallback: "info",
|
|
envFallback: {
|
|
local: "debug",
|
|
},
|
|
}),
|
|
};
|