Turbo cache (#767)

* Try to add vercel caching with turbo

* Update lockfile

* Update turbo json file

* Fix CI

* Add new rule

* re-launch ci

* Update CI to use Turbo

* Use yarn turbo build
This commit is contained in:
Thomas Camlong
2023-03-18 18:19:28 +08:00
committed by GitHub
parent 47cb9cd5b6
commit 04a304dcd6
5 changed files with 48 additions and 32 deletions

11
turbo.json Normal file
View File

@@ -0,0 +1,11 @@
{
"$schema": "https://turbo.build/schema.json",
"pipeline": {
"build": {
"outputs": [
".next/**",
"!.next/cache/**"
]
}
}
}