content: Change build.sh file perms in Cloudflare hosting docs

This commit is contained in:
Joe Mooring 2025-08-20 06:41:04 -07:00 committed by GitHub
parent 0569c68cac
commit 82885415fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,15 +28,15 @@ Create a `wrangler.toml` file in the root of your project.
```toml {file="wrangler.toml" copy=true}
# Configure Cloudflare Worker
name = 'hosting-cloudflare-worker'
compatibility_date = '2025-07-31'
name = "hosting-cloudflare-worker"
compatibility_date = "2025-07-31"
[build]
command = './build.sh'
command = "chmod a+x build.sh && ./build.sh"
[assets]
directory = './public'
not_found_handling = '404-page'
directory = "./public"
not_found_handling = "404"
```
### Step 2