import { createEnv } from '@t3-oss/env-nextjs'; import { z } from 'zod'; export const env = createEnv({ server: { API_URL: z.string(), }, client: {}, runtimeEnv: { API_URL: process.env.API_URL, }, });