
REMOVE Block Public Access to make it public

Go to Permissions → Bucket Policy, and add:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "PublicReadGetObject",
"Effect": "Allow",
"Principal": "*",
"Action": "s3:GetObject",
"Resource": "arn:aws:s3:::my-test-vite-react-app/*"
}
]
}


We have the URL, time to upload the app :

And once done, you will have dist folder, the items inside of which we are going to upload on out S3 bucket -
