Files
sistema_base/apps/web/lib/env.ts

13 lines
220 B
TypeScript

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,
},
});