Update turbo.json

This commit is contained in:
kleap-admin 2026-01-16 17:06:45 +00:00
parent ffd817eaa0
commit 9bf1ff0a52
1 changed files with 30 additions and 0 deletions

30
turbo.json Normal file
View File

@ -0,0 +1,30 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": [".next/**", "!.next/cache/**"],
"env": [
"NODE_ENV",
"NEXT_PUBLIC_*"
]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"outputs": []
},
"type-check": {
"outputs": []
}
},
"globalEnv": [
"NODE_ENV"
],
"globalPassThroughEnv": [
"NEXT_TELEMETRY_DISABLED",
"TURBOPACK_TELEMETRY_DISABLED",
"NODE_OPTIONS"
]
}