proxy/turbo.json

16 lines
273 B
JSON
Raw Normal View History

2023-11-14 17:56:44 +00:00
{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env"],
"pipeline": {
"build": {
2023-11-16 12:16:52 +00:00
"outputs": ["dist/**"],
"dependsOn": ["^build"]
2023-11-14 17:56:44 +00:00
},
"lint": {},
"dev": {
"cache": false,
"persistent": true
}
}
}