Files
zenblog/turbo.json
2024-09-02 00:08:13 +02:00

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
}
}
}