UNPKG

@proofgeist/kit

Version:

Create web application with the ProofKit stack

17 lines (14 loc) 375 B
import { createEnv } from "@t3-oss/env-core"; import { z } from "zod"; import { type OttoAPIKey } from "@proofgeist/fmdapi"; export const env = createEnv({ server: { NODE_ENV: z .enum(["development", "test", "production"]) .default("development"), }, clientPrefix: "VITE_", client: {}, runtimeEnv: process.env, emptyStringAsUndefined: true, });