Files
shadcn-ui/turbo.json
2023-02-10 11:15:33 +04:00

31 lines
598 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalEnv": ["NODE_ENV"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"env": [
"NEXT_PUBLIC_APP_URL",
"UPSTASH_REDIS_REST_URL",
"UPSTASH_REDIS_REST_TOKEN",
"LOGSNAG_TOKEN"
],
"outputs": ["dist/**", ".next/**"]
},
"preview": {
"env": ["NEXT_PUBLIC_APP_URL"],
"outputs": ["dist/**", ".next/**"]
},
"lint": {
"outputs": []
},
"format:check": {
"outputs": []
},
"typecheck": {},
"dev": {
"cache": false
}
}
}