From 7310d521f6f1e6b43e36e927b9a3de02da9d3c74 Mon Sep 17 00:00:00 2001 From: Paul Bakaus Date: Thu, 12 Mar 2026 11:45:07 -0700 Subject: [PATCH] fix: correct Cloudflare Pages project name in wrangler.toml Project name was "impeccable-style" but the actual CF Pages project is "impeccable", causing deploy failures. Co-Authored-By: Claude Opus 4.6 --- wrangler.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrangler.toml b/wrangler.toml index c361abe2d..087ca9dc5 100644 --- a/wrangler.toml +++ b/wrangler.toml @@ -1,3 +1,3 @@ -name = "impeccable-style" +name = "impeccable" compatibility_date = "2024-12-01" pages_build_output_dir = "./build"