Bun runtime now supports large functions and extended max duration
Bun runtime now supports 5GB packages and 30-minute durations on Vercel Functions.
The on Vercel Functions now supports larger package sizes up to 5GB uncompressed and extended max duration for up to 30 minutes, two betas that previously ran on Node.js and Python only.Bun runtime Large functions raise the standard 250MB package size limit to 5GB, and extended max duration raises the generally available 800-second ceiling to 1800 seconds for Pro and Enterprise teams. Both features require to be enabled. New projects are enrolled in the large functions beta automatically, while existing projects created before opt in by adding as an , then redeploying.
Durations above 800 seconds are set per function in rather than as a project-level default:Fluid computeenvironment variable in your project settingsJuly 2026VERCEL_SUPPORT_LARGE_FUNCTIONS=1vercel.json The entry point serves the long-running route with Bun:server.ts During the beta, these features are unavailable on projects using Secure Compute or Static IPs. Read the and documentation.large functionsextended max duration Read more