From 00a5ec5bd238ce7a00435daa4ce187375ac0c5c1 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Sat, 27 Sep 2025 01:28:11 -0400 Subject: [PATCH] ci: add regional hostname --- infra/stage.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/infra/stage.ts b/infra/stage.ts index c1239832..72942290 100644 --- a/infra/stage.ts +++ b/infra/stage.ts @@ -3,3 +3,11 @@ export const domain = (() => { if ($app.stage === "dev") return "dev.opencode.ai" return `${$app.stage}.dev.opencode.ai` })() + +export const zoneID = "430ba34c138cfb5360826c4909f99be8" + +new cloudflare.RegionalHostname("RegionalHostname", { + hostname: domain, + regionKey: "us", + zoneId: zoneID, +})