mirror of
https://github.com/jordienr/zenblog.git
synced 2026-09-24 23:49:30 -05:00
27 lines
592 B
JSON
27 lines
592 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**", "dist/**"]
|
|
},
|
|
"api#build": {
|
|
"dependsOn": ["^build"],
|
|
"env": [
|
|
"SUPABASE_URL",
|
|
"SUPABASE_SERVICE_ROLE_KEY",
|
|
"UPSTASH_REDIS_REST_URL",
|
|
"BASE_API_URL",
|
|
"UPSTASH_REDIS_REST_TOKEN"
|
|
],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"lint": {},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
}
|
|
}
|