mirror of
https://github.com/logos-messaging/lab.waku.org.git
synced 2026-01-16 12:43:08 +00:00
11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
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,
|
|
});
|