From 16e54a3a6c7b5ae3237a1a7e5394779485a1430e Mon Sep 17 00:00:00 2001 From: "Stephanos A." Date: Tue, 2 Jun 2026 23:02:00 +0300 Subject: [PATCH] fix: Add .next directory to build outputs in turbo.json - Includes Next.js build output directory (.next) - Ensures Turbo cache properly recognizes all build outputs - Fixes missing output file warnings --- turbo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 8d54b83ac..548b6d7a9 100644 --- a/turbo.json +++ b/turbo.json @@ -3,7 +3,7 @@ "tasks": { "build": { "dependsOn": ["^build"], - "outputs": ["dist/**", "build/**"] + "outputs": ["dist/**", "build/**", ".next/**"] }, "dev": { "cache": false,