File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -456,20 +456,20 @@ These are the available config options for making requests. Only the `url` is re
456
456
// automatically. If set to `true` will also remove the 'content-encoding' header
457
457
// from the responses objects of all decompressed responses
458
458
// - Node only (XHR cannot turn off decompression)
459
- de
A4B1
compress: true // default
459
+ decompress: true , // default
460
460
461
461
// transitional options for backward compatibility that may be removed in the newer versions
462
462
transitional: {
463
463
// silent JSON parsing mode
464
464
// `true` - ignore JSON parsing errors and set response.data to null if parsing failed (old behaviour)
465
465
// `false` - throw SyntaxError if JSON parsing failed (Note: responseType must be set to 'json')
466
- silentJSONParsing: true ; // default value for the current Axios version
466
+ silentJSONParsing: true , // default value for the current Axios version
467
467
468
468
// try to parse the response string as JSON even if `resposeType` is not 'json'
469
- forcedJSONParsing: true ;
469
+ forcedJSONParsing: true ,
470
470
471
471
// throw ETIMEDOUT error instead of generic ECONNABORTED on request timeouts
472
- clarifyTimeoutError: false ;
472
+ clarifyTimeoutError: false ,
473
473
}
474
474
}
475
475
```
You can’t perform that action at this time.
0 commit comments