-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathturbo.json
40 lines (40 loc) · 899 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
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {},
"dev": {
"dependsOn": ["generate"],
"cache": false,
"persistent": true,
"env": [
"POLKADEX_CHAIN",
"GOOGLE_ANALYTICS",
"ANALYZE",
"API_REGION",
"GRAPHQL_URL",
"IDENTITY_POOL_ID",
"USER_POOL_ID",
"USER_WEB_CLIENT_ID",
"LANDING_PAGE",
"SIGNUP_DISABLED",
"PIN_POINT_CLIENT_ID",
"MAINTENACE_MODE",
"SHOW_SHUTDOWN_POPUP",
"UNDER_MAINTENACE",
"MAIN_URL",
"BLOCKED_ASSETS",
"DISABLED_FEATURES",
"GOOGLE_API_KEY",
"GOOGLE_CLIENT_ID"
]
},
"generate": {
"cache": false
}
}
}