[Vuejs]-Random timeout on GET request with Axios

0👍

This was an issue with Axios indeed.
Axios in his 0.19 version returned timeouts where they might be other errors involved.
I updated it to v0.22, that show me another error : some JSON response were truncated and not able to be parsed.
Related issues on github :

I had to switch from axios to node-fetch.

Leave a comment