This repository has been archived on 2024-10-29. You can view files and clone it, but cannot push or open issues or pull requests.

18 lines
334 B
JSON
Raw Normal View History

2024-10-03 19:39:41 +01:00
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"dependsOn": ["^build"],
2024-10-03 20:39:03 +01:00
"inputs": ["$TURBO_DEFAULT$", ".env*"],
2024-10-03 19:39:41 +01:00
"outputs": [".next/**", "!.next/cache/**"]
},
2024-10-03 20:39:03 +01:00
"lint": {
"dependsOn": ["^lint"]
},
2024-10-03 19:39:41 +01:00
"dev": {
"cache": false,
"persistent": true
}
}
2024-10-03 20:39:03 +01:00
}k