-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathturbo.json
53 lines (51 loc) · 961 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
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".svelte-kit/**", ".vercel/**"]
},
"build:win": {
"dependsOn": ["^build:win"],
"outputs": [".svelte-kit/**"]
},
"lint": {
"outputs": []
},
"dev": {
"cache": false
},
"start": {
"cache": false
},
"start:win": {
"cache": false
},
"preview": {
"cache": false
},
"web#build": {
"env": ["PUBLIC_PAYLOAD_SERVER_URL"]
},
"server#build": {
"env": [
"PUBLIC_PORT",
"PORT",
"PAYLOAD_SECRET",
"MONGO_URL",
"PAYLOAD_PUBLIC_SERVER_URL"
]
},
"web#build:win": {
"env": ["PUBLIC_PAYLOAD_SERVER_URL"]
},
"server#build:win": {
"env": [
"PORT",
"PAYLOAD_SECRET",
"MONGO_URL",
"PAYLOAD_PUBLIC_SERVER_URL"
]
}
}
}