Files
2026-07-13 12:58:18 +08:00

20 lines
364 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"dev": {
"cache": false,
"persistent": true
},
"build": {
"outputs": [".next/**", "!.next/cache/**", "dist/**"],
"dependsOn": ["^build"]
},
"start": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"lint": {}
}
}