Files
fake-adsb-index/src/lib/fetch.mjs
joe fleming c5e8b7f178 fix: saner defaults
3 second fetch timeout and 200km radius
2018-11-06 16:11:12 -07:00

10 lines
176 B
JavaScript

import axios from 'axios';
export default axios.create({
timeout: 3000,
responseType: 'json',
headers: {
'Content-Type': 'application/json; charset=utf-8',
},
});