-
Notifications
You must be signed in to change notification settings - Fork 2
/
turbo.json
47 lines (46 loc) · 1.08 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
{
// ############# KNOWN ENV VARIABLES #############
// // apps/frontend
// "NUXT_PUBLIC_FRONTEND_URL", // For SEO
// "NUXT_PUBLIC_BACKEND_URL", // To connect with backend
// // apps/backend
// "FRONTEND_URL", // To allow cors from frontend and redirections
// "KINDE_DOMAIN",
// "KINDE_CLIENT_ID",
// "KINDE_CLIENT_SECRET",
// "KINDE_REDIRECT_URI",
// "KINDE_LOGOUT_REDIRECT_URI"
// ],
// ###############################################
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalDependencies": [
"**/.env",
"**/.env.*"
],
"globalPassThroughEnv": [
"NODE_TLS_REJECT_UNAUTHORIZED", // Needed to dev and build with self-signed certificates
"AWS_*" // AWS variables
],
"tasks": {
"build": {
"dependsOn": [
"^build"
],
"outputs": [
".nuxt/**",
".output/**",
"dist/**"
]
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
},
"deploy": {
"cache": false,
"dependsOn": ["build", "lint"]
}
}
}