React アプリケーションがあり、aws からサーバーレスにアクセスしようとしています。しかし、私は以下のエラーがあります
No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'https://www.test.com' is therefore not allowed access. The response had HTTP status code 502.
エンドポイント URL はhttps://key.execute-api.ap-southeast-2.amazonaws.com/dev/samplefunctionです
serverless.yml の設定は
login:
handler: login.login
events:
- http:
path: login
method: post
cors:
origin: 'https://admin.differentdomain.com'
headers:
- MY_CUSTOM_HEADER
- Content-Type
- X-Amz-Date
- Authorization
- X-Api-Key
- X-Amz-Security-Token
CORS 構成を行う必要がある他の場所はありますか?