Jose Boretto
Results
3
comments of
Jose Boretto
This was my solution. ```javascript var numberOfAjaxCAllPending = 0; // Add a request interceptor axios.interceptors.request.use(function (config) { numberOfAjaxCAllPending++; Pace.start() return config; }, function (error) { return Promise.reject(error); }); // Add...
thanks @setefocos . I updated the code
Can you publish the results?