Storage Setup
JavaScript bundles and assets are stored in a Cloudflare R2 bucket.
1. Creating the R2 Bucket
Section titled “1. Creating the R2 Bucket”Create a bucket named expo-updates-storage:
npx wrangler r2 bucket create expo-updates-storage2. Configuring the Binding
Section titled “2. Configuring the Binding”Ensure your apps/update-server/wrangler.jsonc has the correct STORAGE binding:
"r2_buckets": [ { "bucket_name": "expo-updates-storage", "binding": "STORAGE" }]