Skip to content

Vercel Sandbox now supports up to32 vCPU + 64 GB RAM configurations

1 min read

Vercel Sandbox now supports creating sandboxes with up to 32 vCPUs and 64 GB of RAM for Enterprise customers. This enables running large, resource-intensive applications that are CPU-bound or require a large amount of memory.

Get started by setting the resources.vcpus option in the SDK:

import { Sandbox } from "@vercel/sandbox";
const sandbox = await Sandbox.create({
resources: { vcpus: 32 },
});

Or using the --vcpus option in the CLI:

sandbox create --connect --vcpus 32

Learn more about Sandbox in the docs.