Norserium

Results 216 comments of Norserium

@kelvz-hub, well, it's the common issue with AWS. Try to set CORS configuration on that side correctly: https://docs.aws.amazon.com/AmazonS3/latest/userguide/cors-troubleshooting.html. The guide answers why it happens.

1. Check that your link opens in the browser. 2. Try to set the following config for CORS policy: ``` [ { "AllowedHeaders": [ "*" ], "AllowedMethods": [ "POST", "GET",...

@kelvz-hub, does the passed link opens in the browser? Try to click at the link in the error. Also, try to disable `canvas` property and check if the image loads:...

@kelvz-hub, if you set `canvas` to false, the canvas won't be available, so you can't get the cropped image. It's okay, it was just for check. Could you remove that...

@kelvz-hub, look, there is no `Access-Control-Allow-Origin` header. The problem on the storage configuration side. Try to check the section "[Troubleshooting CORS methods](https://aws.amazon.com/premiumsupport/knowledge-center/s3-configure-cors/)".

@kelvz-hub, it's definitely strange. Try to use that image in [the sandbox](https://codesandbox.io/s/vue-avanced-cropper-basic-jfy5w).

@kelvz-hub, it looks like your image was cached before you set the correct CORS settings at the Amazon Storage.

@kelvz-hub, I've tried your image in the sandbox and it works without any query parameters. ![image](https://user-images.githubusercontent.com/9862719/185758490-ef299c56-0218-41b9-84c5-88d8690b473d.png) Could you provide the screenshot of response headers for both image requests?