()
| 3 | * When enabled, functions exceeding the AWS Lambda size limits run on Hive. |
| 4 | */ |
| 5 | export function isLargeFunctionsEnabled(): boolean { |
| 6 | const value = process.env.VERCEL_SUPPORT_LARGE_FUNCTIONS; |
| 7 | return value === '1' || value === 'true'; |
| 8 | } |
no outgoing calls
no test coverage detected