-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathturbo.json
48 lines (47 loc) · 1.13 KB
/
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
44
45
46
47
48
{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"env": [],
"outputs": ["dist/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"website#build": {
"dependsOn": ["^build"],
"env": [
"NEXT_PUBLIC_ENABLE_SENTRY",
"NEXT_PUBLIC_ENABLE_POSTHOG",
"NEXT_PUBLIC_POSTHOG_KEY",
"NEXT_PUBLIC_POSTHOG_HOST",
"RATE_LIMIT_COUNT",
"KV_REST_API_URL",
"KV_REST_API_TOKEN",
"SVIX_WEBHOOK_SECRET",
"DATABASE_URL",
"DATABASE_URL_UNPOOLED",
"FUTUREJUDGE_TOKEN",
"FUTURE_JUDGE_API_URL",
"POSTGRES_DRIVER",
"NEXT_PUBLIC_MELI_PUBLIC_KEY",
"MELI_ACCESS_TOKEN",
"MELI_WEBHOOK_SECRET",
"SENTRY_AUTH_TOKEN",
"NEXT_PUBLIC_STACK_PROJECT_ID",
"NEXT_PUBLIC_STACK_PUBLISHABLE_CLIENT_KEY",
"STACK_SECRET_SERVER_KEY"
],
"outputs": [".next/**", "!.next/cache/**"]
},
"check-types": {
"dependsOn": ["^check-types"]
},
"dev": {
"persistent": true,
"cache": false
}
}
}