Add turborepo to monorepo.

This commit is contained in:
Lee Robinson
2023-05-29 10:38:24 -05:00
parent f5091dd4d7
commit 2f3be1cfe5
4 changed files with 30 additions and 21 deletions

13
turbo.json Normal file
View File

@ -0,0 +1,13 @@
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env"],
"pipeline": {
"build": {
"outputs": [".next/**", "!.next/cache/**"]
},
"dev": {
"cache": false,
"persistent": true
}
}
}