Unable to crop media

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:

  1. Login to AWS.

  2. Navigate to S3.

  3. Navigate/click into your S3 bucket.

  4. Click on the “Permissions” tab

  5. Scroll all the way down to “Cross-origin resource sharing (CORS)”

  6. Click on “Edit” on the top right of the section.

  7. Copy and paste the following into your CORS:

    [
    {
    “AllowedHeaders”: [
    "
    ],
    “AllowedMethods”: [
    “GET”,
    “PUT”,
    “POST”,
    “DELETE”,
    “HEAD”
    ],
    “AllowedOrigins”: [
    "

    ]
    }
    ]

  8. Click “Save changes”

This should enable you to use the crop tool.
Should look like this:

Hope that helps