mirror of
https://github.com/documenso/documenso.git
synced 2025-11-10 04:22:32 +10:00
24 lines
503 B
JSON
24 lines
503 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": [".next/**", "!.next/cache/**"]
|
|
},
|
|
"lint": {},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true
|
|
}
|
|
},
|
|
"globalDependencies": ["**/.env.*local"],
|
|
"globalEnv": [
|
|
"NEXTAUTH_URL",
|
|
"NEXTAUTH_SECRET",
|
|
"NEXT_PUBLIC_SITE_URL",
|
|
"NEXT_PRIVATE_DATABASE_URL",
|
|
"NEXT_PRIVATE_NEXT_AUTH_SECRET",
|
|
"NEXT_PUBLIC_SUBSCRIPTIONS_ENABLED"
|
|
]
|
|
}
|