Axios adapter for awesome mobx-rest
yarn add mobx-rest-axios-adapter
// or
npm i -S mobx-rest-axios-adapter
import axios from 'axios'
import {apiClient} from 'mobx-rest'
const createAdapter: any = require('mobx-rest-axios-adapter').default
// if you have custom axios config place it right before this line
apiClient(createAdapter(axios), { commonOptions: { qs: {indices: false } } })
and you ready to go :D