aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/app/.server/api/client.ts
blob: 8e50b7ea70944afbd2e89aa34a23c2c1758fd6e8 (plain)
1
2
3
4
5
6
7
8
9
import createClient from "openapi-fetch";
import type { paths } from "./schema";

export const apiClient = createClient<paths>({
  baseUrl:
    process.env.NODE_ENV === "development"
      ? "http://localhost:8002/api/"
      : "http://api-server/api/",
});