> For the complete documentation index, see [llms.txt](https://mgcrea.gitbook.io/redux-rest-resource/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mgcrea.gitbook.io/redux-rest-resource/advanced/customfetch.md).

# Custom fetch

You can easily plug in your own fetch library:

```javascript
import fetch from 'fetch-everywhere';
import {defaultGlobals as reduxRestResourceGlobals} from 'redux-rest-resource';
Object.assign(reduxRestResourceGlobals, {fetch});
```
