frontend/pages/api/fetch.ts
2022-10-22 23:11:32 +03:00

10 lines
134 B
TypeScript

import axios from "axios"
import { host } from "./consts"
export const fetcher = axios.create(
{
baseURL: host,
}
)