mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-09-14 20:00:35 +08:00
27 lines
528 B
JSON
27 lines
528 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": []
|
||
|
|
},
|
||
|
|
"dev": {
|
||
|
|
"cache": false
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|