Evo.Auth/turbo.json
vchikalkin 27ad1e96dd apps/web: check and pass env variables
convert next.config to mjs
2023-10-15 15:22:58 +03:00

30 lines
541 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": [".env.*"],
"pipeline": {
"build": {
"outputs": ["dist/**", ".next/**", "public/dist/**"],
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true
},
"lint": {
"dependsOn": ["^build"],
"cache": false,
"outputs": []
},
"lint:fix": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"cache": false
},
"clean": {
"cache": false
}
}
}