-
-
Notifications
You must be signed in to change notification settings - Fork 279
/
Copy pathturbo.json
43 lines (43 loc) · 872 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
39
40
41
42
43
{
"$schema": "https://turbo.build/schema.json",
"globalEnv": [
"NEXT_PUBLIC_ORAMA_ENDPOINT",
"NEXT_PUBLIC_ORAMA_API_KEY",
"GITHUB_APP_PRIVATE_KEY",
"GITHUB_APP_ID",
"GITHUB_TOKEN",
"INKEEP_API_KEY"
],
"ui": "stream",
"tasks": {
"build": {
"env": ["ALGOLIA_API_KEY", "ORAMA_INDEX_ID", "ORAMA_PRIVATE_API_KEY"],
"dependsOn": ["^build"],
"outputs": [
".output",
".contentlayer/**",
".source/**",
"!.contentlayer/.cache/**",
".next/**",
"content/openapi/**",
"!.next/cache/**",
"dist/**",
"out",
"build",
".vercel"
]
},
"lint": {},
"types:check": {
"dependsOn": [],
"outputs": []
},
"clean": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}