UNPKG

287 BPlain TextView Raw
1import axios from 'axios'
2
3export default function(token: string) {
4 const headers = {
5 'Accept': 'application/json',
6 'User-Agent': 'Bearer',
7 'Authorization': token
8 }
9
10 return axios.create({
11 baseURL: 'https://api.example.com/v1',
12 timeout: 5000,
13 headers
14 })
15}