Update turbo configuration
Some checks failed
Build and deploy updated apps / Build & deploy (push) Failing after 1m4s

This commit is contained in:
Dominik Milacher 2025-10-14 15:04:43 +02:00
parent b080fe777d
commit dbb9cab101

View File

@ -5,7 +5,7 @@
"build": { "build": {
"dependsOn": ["^build"], "dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"], "inputs": ["$TURBO_DEFAULT$", ".env*"],
"outputs": [".next/**", "!.next/cache/**"] "outputs": [".nuxt/**", ".output/**", "dist/**"]
}, },
"lint": { "lint": {
"dependsOn": ["^lint"] "dependsOn": ["^lint"]
@ -16,6 +16,10 @@
"dev": { "dev": {
"cache": false, "cache": false,
"persistent": true "persistent": true
},
"generate": {
"dependsOn": ["^generate"],
"outputs": [".output/**"]
} }
} }
} }