Merged in feat/turborepo (pull request #1451)

Turborepo

Approved-by: Linus Flood
This commit is contained in:
Anton Gunnarsson
2025-03-12 08:18:38 +00:00
parent 796112ca28
commit 01740e3300
8 changed files with 127 additions and 8 deletions

16
turbo.json Normal file
View File

@@ -0,0 +1,16 @@
{
"$schema": "https://turbo.build/schema.json",
"tasks": {
"build": {
"inputs": ["$TURBO_DEFAULT$", ".env*"],
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"dev": {
"persistent": true,
"cache": false
},
"lint": {},
"test": {}
}
}