-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathturbo.json
More file actions
46 lines (46 loc) · 1.04 KB
/
Copy pathturbo.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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
44
45
46
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [
"**/.env.*local"
],
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".next/**",
"!.next/cache/**",
"dist/**"
],
"env": [
"KARRIO_ADMIN_URL",
"KARRIO_ADMIN_API_KEY",
"NEXTAUTH_SECRET",
"NEXTAUTH_URL",
"AUTH_TRUST_HOST",
"NEXT_PUBLIC_DASHBOARD_VERSION",
"NEXT_PUBLIC_KARRIO_PUBLIC_URL",
"NEXT_PUBLIC_MULTI_TENANT",
"NEXT_PUBLIC_BASE_PATH",
"NEXT_PUBLIC_ADDRESS_AUTO_COMPLETE_SERVICE",
"NEXT_PUBLIC_ADDRESS_AUTO_COMPLETE_SERVICE_KEY",
"NEXT_PUBLIC_SENTRY_DSN",
"SENTRY_IGNORE_API_RESOLUTION_ERROR"
]
},
"lint": {},
"dev": {
"cache": false,
"persistent": false
},
"dev:oss": {
"cache": false,
"persistent": false
},
"dev:platform": {
"cache": false,
"persistent": false
}
}
}