Felipe Zavan

Results 42 comments of Felipe Zavan

A `setReplyTo` would also be appreciated.

AWS CloudFront doesn't like GET requests with a body. This fixed it for us: ```js proxyReqBodyDecorator: (bodyContent, srcReq) => { if (srcReq.method === 'GET') return ""; return bodyContent; }, ```...