Szymon Klimek

Results 4 comments of Szymon Klimek

Documentation clearly says: "Headers slot You can also override all the internal headers by using the headers slot. Remember that you will have to re-implement any internal functionality like sorting."...

I have tried several versions of axios from `0.24.0`, `1.1.3`, `1.2.6` and newest `1.3.4`. Every time my Vue 2 app experiencing problems with headers while using Firefox only - `DOMException:...

@mikemasam I'm not sure where to modify the headers. Should I modify headers as a request interceptor or use this replace code somwhere else? my httpClient.js looks as follows: ```...

My working solution I came up with is replacing object constructor for headers `new Headers` with: ``` httpClient.defaults.headers.common['Accept'] = 'application/json' httpClient.defaults.headers.common['Cache-Control'] = 'no-cache' ```