11 lines
234 B
TypeScript
Raw Normal View History

2024-10-25 05:41:04 +05:30
import { createEnv } from "@t3-oss/env-core";
import { z } from "zod";
export const env = createEnv({
clientPrefix: "VITE_",
client: {
VITE_WALLETCONNECT_PROJECT_ID: z.string().min(1),
},
runtimeEnv: import.meta.env,
});