From ea70fc24d21f6c846df38f8cb0d24602e89a8339 Mon Sep 17 00:00:00 2001 From: Stephen Fraser Date: Mon, 15 Jul 2024 15:57:31 +0100 Subject: [PATCH] Added turbo environment variables --- turbo.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index c5c66a54..77897fd0 100644 --- a/turbo.json +++ b/turbo.json @@ -1,7 +1,15 @@ { "$schema": "https://turbo.build/schema.json", "globalDependencies": ["**/.env.*local"], - "globalEnv": ["TYPESENSE_API_KEY"], + "globalEnv": [ + "NEXT_PUBLIC_TYPESENSE_API_KEY", + "NEXT_PUBLIC_TYPESENSE_HOST", + "NEXT_PUBLIC_TYPESENSE_PORT", + "NEXT_PUBLIC_TYPESENSE_PORT", + "NEXT_PUBLIC_TYPESENSE_PROTOCOL", + "NEXT_PUBLIC_TYPESENSE_COLLECTION_NAME", + "TYPESENSE_API_KEY" + ], "pipeline": { "build": { "dependsOn": ["^build"],