frontend/pages/api/fetch.ts

10 lines
134 B
TypeScript
Raw Normal View History

2022-10-22 00:34:07 +03:00
import axios from "axios"
import { host } from "./consts"
export const fetcher = axios.create(
{
baseURL: host,
}
)