From 82885415fac1bddd26f3d8b5d9c0538738196cf0 Mon Sep 17 00:00:00 2001 From: Joe Mooring Date: Wed, 20 Aug 2025 06:41:04 -0700 Subject: [PATCH] content: Change build.sh file perms in Cloudflare hosting docs --- content/en/host-and-deploy/host-on-cloudflare/index.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/content/en/host-and-deploy/host-on-cloudflare/index.md b/content/en/host-and-deploy/host-on-cloudflare/index.md index ca8ea8b09..aebd7b868 100644 --- a/content/en/host-and-deploy/host-on-cloudflare/index.md +++ b/content/en/host-and-deploy/host-on-cloudflare/index.md @@ -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