No 'Access-Control-Allow-Origin' header is present on the requested resource. net::ERR_FAILED 200

hrj2233·2021년 11월 24일
0

error

목록 보기
1/1

발생시
aws일 경우 s3의 권한에 cors에 아래의 json형식 입력

[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "GET",
            "PUT",
            "POST",
            "DELETE"
        ],
        "AllowedOrigins": [
              "여기에 본인 홈페이지의 주소를 입력하면 됩니다. "
        ],
        "ExposeHeaders": []
    }
]

0개의 댓글