From 502eaf080cb10603040ef56ab1904584a2f164aa Mon Sep 17 00:00:00 2001 From: Jean du Plessis Date: Thu, 19 Feb 2026 12:07:37 +0200 Subject: [PATCH] fix: add missing env vars to turbo.json for kilo-docs build Declare POSTHOG_API_KEY and FREE_TIER_AMOUNT in the @kilocode/kilo-docs#build task so Vercel exposes them during builds and Turborepo includes them in the cache hash. --- turbo.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/turbo.json b/turbo.json index 746ccc23a..58305a556 100644 --- a/turbo.json +++ b/turbo.json @@ -15,6 +15,11 @@ "@opencode-ai/app#test": { "dependsOn": ["^build"], "outputs": [] + }, + "@kilocode/kilo-docs#build": { + "dependsOn": ["^build"], + "outputs": ["dist/**"], + "env": ["POSTHOG_API_KEY", "FREE_TIER_AMOUNT"] } } }