r=>ht.stringify(r,{arrayFormat:"repeat"})timeout: 10000transformRequest: r=> {…}transformResponse: [ƒ]transitional: {silentJSONParsing: true, forcedJSONParsing: true, clarifyTimeoutError: false}url: "/projects/11728851208864/process-definition/128534891114912"validateStatus: ƒ (e)xsrfCookieName...
stringify(errorMessage))) This might be true for errors coming from Contentful itself. However, the error which is caught at this point is coming out of Axios which is used inside the Contentful client [EDIT: Nope, it's not coming from Axios itself, but from some transformer function ...
returnfetch('http://localhost:3001/card',{method:'POST',body:JSON.stringify({test:'test'}),}) I was able to make axios work byJSON.stringify-ing my data like so: returnaxios.post('http://localhost:3001/card',JSON.stringify({test:'test'})); ...