From 9a8110047ecd8f9dc5ca9bffb3a65e19a9fafd11 Mon Sep 17 00:00:00 2001 From: iCrawl Date: Mon, 13 Nov 2023 19:55:08 +0100 Subject: [PATCH] fix: cache nextjs cache output with turbo --- turbo.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/turbo.json b/turbo.json index 4f6c19e55..53f027ed2 100644 --- a/turbo.json +++ b/turbo.json @@ -28,7 +28,7 @@ "package.json", "tsconfig.json" ], - "outputs": [".next/**", "!.next/cache/**", ".contentlayer/**"], + "outputs": [".next/**", ".next/cache/**", ".contentlayer/**"], "outputMode": "full" }, "@discordjs/guide#build:prod": { @@ -42,7 +42,7 @@ "package.json", "tsconfig.json" ], - "outputs": [".next/**", "!.next/cache/**", ".contentlayer/**"], + "outputs": [".next/**", ".next/cache/**", ".contentlayer/**"], "outputMode": "full" }, "@discordjs/website#build:local": { @@ -59,7 +59,7 @@ "package.json", "tsconfig.json" ], - "outputs": [".next/**", "!.next/cache/**", "src/assets/readme/**"], + "outputs": [".next/**", ".next/cache/**", "src/assets/readme/**"], "outputMode": "full" }, "@discordjs/website#build:prod": { @@ -76,7 +76,7 @@ "package.json", "tsconfig.json" ], - "outputs": [".next/**", "!.next/cache/**", "src/assets/readme/**"], + "outputs": [".next/**", ".next/cache/**", "src/assets/readme/**"], "outputMode": "full" }, "@discordjs/guide#generate:contentlayer": {