Static site is ready

This bucket is set up with CloudFront. Your site is available at:

https://test-static-recover-static.prototypical.net

How to push your own content

Use the AWS CLI to upload your built site (e.g. from dist or build). Replace proto-acc-static-test-static-recover with your bucket name if you copy the commands.

1. Clear existing objects (optional)

To remove the current welcome page and any existing files before uploading:

aws s3 rm s3://proto-acc-static-test-static-recover --recursive

2. Upload your project

Sync a local folder to the bucket (e.g. your built SPA). Use --delete to remove objects in the bucket that are not in the source.

aws s3 sync ./dist s3://proto-acc-static-test-static-recover --delete

Or copy a single directory without deleting existing files:

aws s3 cp ./dist s3://proto-acc-static-test-static-recover --recursive