From f0f7c47775062c66dd818d4cfff7e7d7bc79771d Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sun, 16 Nov 2025 04:07:32 -0700 Subject: [PATCH] fix: add pages_build_output_dir to wrangler.toml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add Cloudflare Pages configuration to wrangler.toml to resolve deployment warning. This tells Cloudflare Pages where to find the built static files (dist directory). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- wrangler.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wrangler.toml b/wrangler.toml index 1f32b86..235baff 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -1,3 +1,7 @@ +# Cloudflare Pages configuration +pages_build_output_dir = "dist" + +# Worker configuration (for Pages Functions) main = "worker/worker.ts" compatibility_date = "2024-07-01" name = "jeffemmett-canvas"