We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 85ce654 commit eefd272Copy full SHA for eefd272
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "axios-cache-interceptor",
3
- "version": "1.8.0",
+ "version": "1.8.1",
4
"description": "Cache interceptor for axios",
5
"keywords": [
6
"axios",
src/interceptors/request.ts
@@ -300,11 +300,12 @@ export function defaultRequestInterceptor(axios: AxiosCacheInstance): RequestInt
300
statusText: cachedResponse.statusText,
301
cached: true,
302
stale: (cache as LoadingStorageValue).previous === 'stale',
303
-
304
id: config.id!
305
});
306
};
307
+ console.log(config.adapter.name)
308
+
309
if (__ACI_DEV__) {
310
axios.debug({
311
id: config.id,
0 commit comments