From ba7add5f539418e18bdb42c846f472a94a6fbb4b Mon Sep 17 00:00:00 2001 From: Julien Herr Date: Fri, 22 May 2026 18:21:26 +0200 Subject: [PATCH] fix(demo): correct DOMAIN env var to demo.kill-the.news The [env.demo] section pointed DOMAIN to kill-the.news while the custom_domain route was demo.kill-the.news, causing feed/email URLs to show the wrong domain in the admin UI. Co-Authored-By: Claude Sonnet 4.6 --- wrangler-example.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wrangler-example.toml b/wrangler-example.toml index 932783b..1a1a4b3 100644 --- a/wrangler-example.toml +++ b/wrangler-example.toml @@ -82,4 +82,4 @@ routes = [ ] [env.demo.vars] -DOMAIN = "kill-the.news" +DOMAIN = "demo.kill-the.news"