Files
create-better-t-stack/turbo.json
Aman Varshney c9571d343a fix deployment
2025-08-03 09:17:55 +05:30

31 lines
608 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"env": ["PROD", "CONVEX_DEPLOY_KEY", "NEXT_PUBLIC_CONVEX_URL", "NEXT_PUBLIC_POSTHOG_KEY", "NEXT_PUBLIC_POSTHOG_HOST"],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^lint"]
},
"check": {
"dependsOn": ["^check"]
},
"dev": {
"cache": false,
"persistent": true
},
"deploy": {
"cache": false,
"persistent": true
},
"deploy:convex": {
"cache": false,
"persistent": true
}
}
}