mirror of
https://github.com/magnum-opus-tender-hack/frontend.git
synced 2025-02-16 23:40:33 +03:00
12 lines
158 B
TypeScript
12 lines
158 B
TypeScript
|
import axios from "axios"
|
||
|
import { host } from "./consts"
|
||
|
|
||
|
|
||
|
export const fetcher = axios.create(
|
||
|
{
|
||
|
baseURL: host,
|
||
|
timeout: 5000,
|
||
|
}
|
||
|
)
|
||
|
|