Skip to content

Instantly share code, notes, and snippets.

@juanchoperezj
Created August 8, 2023 22:01
Show Gist options
  • Save juanchoperezj/ee9e961b6a2efca6be2d5a4a42555796 to your computer and use it in GitHub Desktop.
Save juanchoperezj/ee9e961b6a2efca6be2d5a4a42555796 to your computer and use it in GitHub Desktop.
ENV zod object
import z from 'zod';
const NativeConfig = z.object({
API_URL: z.string(),
BASE_URL: z.string(),
});
export type NativeConfigType = z.infer<typeof NativeConfig>;
export default NativeConfig;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment