websites/turbo.json

22 lines
412 B
JSON
Raw Normal View History

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**", ".next/**", "!.next/cache/**"]
},
"lint": {
"dependsOn": ["^build"]
},
"check-types": {},
"dev": {
"cache": false,
"persistent": true
},
"clean": {
"cache": false
}
}
}