From e41f883aea26fad9630d41e17b4494e24c2ffbb4 Mon Sep 17 00:00:00 2001 From: Darius Cepulis Date: Thu, 23 Oct 2025 13:15:11 -0700 Subject: [PATCH] fix(website): turborepo cache vercel output (#118) --- turbo.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/turbo.json b/turbo.json index 4392406c..dd38bba3 100644 --- a/turbo.json +++ b/turbo.json @@ -5,7 +5,10 @@ "tasks": { "build": { "dependsOn": ["generate:icons", "^build"], - "outputs": ["dist/**"] + "outputs": [ + "dist/**", + ".vercel/output/**" + ] }, "dev": { "cache": false,