Files
auth-remote-react/src/shared/config/api/httpClient.ts
2026-03-17 13:39:32 +03:00

7 lines
120 B
TypeScript

import ky from "ky";
import { BASE_URL } from "./constants";
export const api = ky.create({
prefixUrl: BASE_URL,
});