From 02d67714cc8d7d873c744bcee183d2b6bd178ae6 Mon Sep 17 00:00:00 2001 From: Tianen Pang <32772271+tianenpang@users.noreply.github.com> Date: Wed, 10 Sep 2025 02:19:02 +0800 Subject: [PATCH] fix: add global env (#5678) --- turbo.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/turbo.json b/turbo.json index 2f310e89a..bae9c64f5 100644 --- a/turbo.json +++ b/turbo.json @@ -1,6 +1,16 @@ { "$schema": "https://turbo.build/schema.json", "globalDependencies": ["tsconfig.json"], + "globalEnv": [ + "IS_VERCEL_ENV", + "IS_PREVIEW", + "IS_VA_ENABLED", + "ENABLE_EXPERIMENTAL_COREPACK", + "PLAIN_USER_AUTHENTICATED", + "IMPORT_API_KEY", + "CHAT_URL", + "CHAT_API_URL" + ], "tasks": { "build": { "dependsOn": ["^build"],