From bb5f5910f5079be1b014723cfaf062e7a4d6b73c Mon Sep 17 00:00:00 2001 From: Korbs Date: Thu, 20 Feb 2025 18:03:04 -0500 Subject: [PATCH] Stop caching builds --- turbo.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index ab2924f..c2a2c36 100644 --- a/turbo.json +++ b/turbo.json @@ -2,10 +2,12 @@ "tasks": { "build": { "dependsOn": ["^build"], - "outputs": ["dist/**"] + "outputs": ["dist/**"], + "cache": false }, "watch": { - "cache": false + "cache": false, + "persistent": true } } }