blob: 0150e24b85655a6fb545d78f9b196b9bf13c1ccb [file] [log] [blame]
Skyler Greydeea2f72023-05-31 20:14:49 +02001{
2 "$schema": "https://turbo.build/schema.json",
3 "globalDependencies": ["**/.env.*local"],
4 "pipeline": {
5 "build": {
6 "dependsOn": ["^build"],
7 "outputs": [".next/**", "!.next/cache/**"]
8 },
9 "lint": {},
10 "dev": {
11 "cache": false,
Skyler Grey7177bbd2023-06-01 03:26:31 +020012 "persistent": true,
13 "dependsOn": ["^build"]
Skyler Greydeea2f72023-05-31 20:14:49 +020014 }
15 }
16}