const { z } = require('zod'); const envSchema = z.object({ URL_IUS_DIRECT: z.string(), USE_DEV_COLORS: z.string(), }); module.exports = envSchema;