39 lines
671 B
JSON
39 lines
671 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**", ".next/**"]
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"dev:local_infra": {
|
|
"cache": false
|
|
},
|
|
"db:migrate": {
|
|
"cache": false
|
|
},
|
|
"test": {
|
|
"outputs": [],
|
|
"cache": false
|
|
},
|
|
"about-me#build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"env": [
|
|
"VERCEL_URL",
|
|
"RENDER_INTERNAL_HOSTNAME",
|
|
"PORT",
|
|
"NODE_ENV",
|
|
"DATABASE_URL"
|
|
],
|
|
"outputs": ["dist/**", ".next/**"]
|
|
}
|
|
}
|
|
}
|