23 lines
450 B
JSON
23 lines
450 B
JSON
{
|
|
"$schema": "https://turborepo.com/schema.json",
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**"],
|
|
"env": [
|
|
"DATABASE_URL",
|
|
"BETTER_AUTH_SECRET",
|
|
"UPSTASH_REDIS_REST_URL",
|
|
"UPSTASH_REDIS_REST_TOKEN"
|
|
]
|
|
},
|
|
"check-types": {
|
|
"dependsOn": ["^check-types"]
|
|
},
|
|
"dev": {
|
|
"persistent": true,
|
|
"cache": false
|
|
}
|
|
}
|
|
}
|