Spaces:
Running
Running
File size: 282 Bytes
90723a6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import axios from 'axios'
const http = axios.create({
baseURL: 'https://brestok-eu-scrapper.hf.space',
timeout: 15000,
headers: {
'Content-Type': 'application/json',
},
})
http.interceptors.response.use(
r => r,
err => Promise.reject(err)
)
export default http
|