How to deploy React using S3 Bucket | Deploying react app on S3

Опубликовано: 14 Октябрь 2024
на канале: SidBits Tech
880
12

This video is about deploying react application inside S3 bucket using aws web console. I have created S3 bucket and create a live running url for react application.
Please add below code inside bucket policy :
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowPublicReadAccess",
"Effect": "Allow",
"Principal": "*",
"Action": [
"s3:GetObject"
],
"Resource": "arn:aws:s3:::NameOFBucket/*"
}
]
}