blob: 22cf6ca08a13aa85700d3d5a33ba05fa624ed881 (
plain)
1
2
3
4
5
6
|
import createClient from "openapi-fetch";
import type { paths } from "./api-schema.js";
const apiRoot = import.meta.env.DEV ? "//localhost:8080/api" : "/api";
export const client = createClient<paths>({ baseUrl: apiRoot });
|