From a1179e39343ce150a84cf0bc48446f3c321b9d9e Mon Sep 17 00:00:00 2001 From: Baptiste Arnaud Date: Tue, 29 Aug 2023 19:04:39 +0200 Subject: [PATCH] :green_heart: Make sure __ENV.js file is properly cached --- turbo.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index dea59225c..997dcdcf3 100644 --- a/turbo.json +++ b/turbo.json @@ -15,7 +15,13 @@ }, "build": { "dependsOn": ["^build", "@typebot.io/prisma#db:generate"], - "outputs": [".next/**", "dist/**", "build/**"], + "outputs": [ + ".next/**", + "!.next/cache/**", + "dist/**", + "build/**", + "public/__ENV.js" + ], "outputMode": "new-only", "dotEnv": [".env"] },