We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 424bc68 commit f81c751Copy full SHA for f81c751
turbo.json
@@ -1,14 +1,23 @@
1
{
2
"$schema": "https://turbo.build/schema.json",
3
"globalDependencies": ["**/.env.*local", "**/.env"],
4
- "globalEnv": [],
+ "globalEnv": [
5
+ "NEXT_PUBLIC_FRONTEND_URL",
6
+ "NEXTAUTH_SECRET",
7
+ "NEXTAUTH_URL",
8
+ "GITHUB_ID",
9
+ "GITHUB_SECRET",
10
+ "JWT_SECRET",
11
+ "NEXT_PUBLIC_FB_APP_ID",
12
+ "DATABASE_URL",
13
+ "NODE_ENV"
14
+ ],
15
"tasks": {
16
"build": {
- "dependsOn": ["^db:generate", "^build"],
17
+ "dependsOn": ["^db:generate"],
18
"outputs": [".next/**", "!.next/cache/**"],
19
"env": []
20
},
- "lint": {},
21
"dev": {
22
"dependsOn": ["^db:generate"],
23
"cache": false,
0 commit comments