mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 21:43:15 -08:00
11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
import axios from 'axios';
|
|
|
|
export default getState => axios.create({
|
|
headers: {
|
|
'Authorization': `Bearer ${getState().getIn(['meta', 'access_token'], '')}`
|
|
},
|
|
|
|
transformResponse: [function (data) {
|
|
return JSON.parse(data);
|
|
}]
|
|
});
|