fix: cache nextjs cache output with turbo

This commit is contained in:
iCrawl
2023-11-13 19:55:08 +01:00
parent d4ebc369ca
commit 9a8110047e

View File

@@ -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": {