vchikalkin 30455c3285 apps/web: detect telegram/browser
support browser (dev only)
2024-12-25 22:50:43 +03:00

8 lines
199 B
TypeScript

/* eslint-disable unicorn/prevent-abbreviations */
import { z } from 'zod';
export const envSchema = z.object({
__DEV_TELEGRAM_ID: z.string(),
});
export const env = envSchema.parse(process.env);