mirror of
https://github.com/resend/react-email.git
synced 2026-09-14 14:18:02 +08:00
31 lines
644 B
JSON
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
|
|
}
|
|
}
|
|
}
|