No problem Vasu,
So basically, it’s not an issue within the Strapi plugin configs, it’s on AWS S3.
Let’s go with step by step:
-
Login to AWS.
-
Navigate to S3.
-
Navigate/click into your S3 bucket.
-
Click on the “Permissions” tab
-
Scroll all the way down to “Cross-origin resource sharing (CORS)”
-
Click on “Edit” on the top right of the section.
-
Copy and paste the following into your CORS:
[
{
“AllowedHeaders”: [
“"
],
“AllowedMethods”: [
“GET”,
“PUT”,
“POST”,
“DELETE”,
“HEAD”
],
“AllowedOrigins”: [
"”
]
}
] -
Click “Save changes”
This should enable you to use the crop tool.
Should look like this:
Hope that helps
