Files
imphnen-frontend-service/apps/landing/src/lib/fetcher.ts
T

7 lines
182 B
TypeScript
Raw Normal View History

import type { paths } from '@/openapi-types';
import createClient from 'openapi-fetch';
export const fetcher = createClient<paths>({
baseUrl: process.env.NEXT_PUBLIC_API_URL,
});