blob: 31b91e790e2a6166903dd2e957a85ca893ef66a1 (
plain)
1
2
3
4
5
6
7
8
|
import { z } from 'zod'
const envSchema = z.object({
POSTGRES_URL_NON_POOLING: z.string().url(),
POSTGRES_PRISMA_URL: z.string().url(),
})
export const env = envSchema.parse(process.env)
|