-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.json
38 lines (38 loc) · 855 Bytes
/
turbo.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"env": [
"NEXT_PUBLIC_*",
"NODE_ENV",
"UNSPLASH_SECRET",
"UPLOADTHING_SECRET",
"UPLOADTHING_APP_ID",
"SUPABASE_SERVICE_ROLE",
"OPENAI_API_KEY",
"UPSTASH_REDIS_REST_URL",
"UPSTASH_REDIS_REST_TOKEN",
"RESEND_API_KEY",
"VERCEL_URL",
"SENTRY_AUTH_TOKEN",
"SENTRY_ORG",
"SENTRY_PROJECT"
],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"],
"cache": false
},
"dev": {
"cache": false,
"persistent": true
},
"clean:all": {
"cache": false
}
}
}