Files
resend__react-email/turbo.json
T
2023-10-01 22:13:36 -03:00

31 lines
644 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"globalDependencies": ["**/.env.*local"],
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": [".next/**", "!.next/cache/**"]
},
"web#build": {
"dependsOn": ["^build"],
"env": [
"RESEND_API_KEY",
"NEXT_PUBLIC_SUPABASE_URL",
"NEXT_PUBLIC_SUPABASE_ANON_KEY"
],
"outputs": [".next/**", "!.next/cache/**"]
},
"lint": {},
"//#format": {},
"//#format:check": {},
"test": {},
"test:watch": {
"cache": false
},
"dev": {
"cache": false,
"persistent": true
}
}
}