You have to set to AWS S3 to arrow CORS (Cross-Origin Resource Sharing)
1. Login to AWS Management Console
2. Go to S3 setting.
3. Choice target bucket and set permissions.
And click "Add CORS Configuration" button.
4. Edit CORS Configuration.
put below code
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedHeader>*</AllowedHeader>
<AllowedMethod>GET</AllowedMethod>
</CORSRule>
</CORSConfiguration>
And push save.
5. Finally, Push save.
And setting is completed.