import { z } from 'zod';
const schema = z.object({
API_BASE_URL: z.string().url(),
})
const target = process.env
export const environment = schema.parse(target)
console.log(environment)process.env with a plain js object like { API_BASE_URL: "http://localhost:3000" } the app works as expected, what could be the problem?