In this video we have written an powershell script for react app deployment on AWS S3.
npm run build
$S3_BUCKET_NAME = "awsmasterchef-app"
aws s3 sync .\build\ "s3://$S3_BUCKET_NAME" --delete
echo React app deployed to S3 successfully!
#aws #s3