mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2024-11-22 16:26:35 +03:00
10 lines
134 B
TypeScript
10 lines
134 B
TypeScript
import axios from "axios"
|
|
import { host } from "./consts"
|
|
|
|
|
|
export const fetcher = axios.create(
|
|
{
|
|
baseURL: host,
|
|
}
|
|
)
|