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
|
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"tasks": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"deploy": {},
"dev": {
"env": [
"NODE_ENV=development",
"GOOGLE_CLIENT_ID",
"GOOGLE_CLIENT_SECRET",
"NEXTAUTH_SECRET",
"R2_ENDPOINT",
"R2_ACCESS_ID",
"R2_SECRET_KEY",
"R2_BUCKET_NAME"
],
"cache": false,
"persistent": true
}
}
}
|