serverless-cors-plugin
serverless-cors-plugin copied to clipboard
Serverless CORS Plugin - Managing Cross-origin resource sharing (CORS) policies
So - it looks like I can add the headers to the POST integration for my Lambda Proxy Integration - but I'm not sure how I should be doing this...
I'm trying to send a custom header to my Serverless endpoint using AngularJS and JQuery, and whenever I do I get a 403 error during the OPTIONS preflight check. My...
How do you just deploy the `OPTIONS` method for one endpoint? I was hoping when I deployed my `GET` method this plugin would detect that no `OPTIONS` method was present...
As discussed with @chadkouse in https://github.com/joostfarla/serverless-cors-plugin/issues/1. When providing authenticated requests with the [`withCredentials`](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/withCredentials) option, CORS requires you to set a specific host in the Access-Control-Allow-Origin header. CORS doen not allow...