blob: 93a49f6126646a59755a9d77923bc36cae90db27 (
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/"
: "http://api-server/",
});
|