@proofkit/cli
Version:
Create web application with the ProofKit stack
14 lines (12 loc) • 348 B
text/typescript
import { createEnv } from "@t3-oss/env-nextjs";
import { z } from "zod/v4";
export const env = createEnv({
server: {
NODE_ENV: z
.enum(["development", "test", "production"])
.default("development"),
},
client: {},
// For Next.js >= 13.4.4, you only need to destructure client variables:
experimental__runtimeEnv: {},
});