# Vercel Sandbox now supports up to 32 vCPU \+ 64 GB RAM configurations

**Published:** April 8, 2026 | **Authors:** Tom Lienard, Luke Phillips\-Sheard

---

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](/docs/vercel-sandbox/sdk-reference#sandbox.create):

```typescript
import { Sandbox } from "@vercel/sandbox";

const sandbox = await Sandbox.create({
  resources: { vcpus: 32 },
});
```

Or using the `--vcpus` option in the [CLI](/docs/vercel-sandbox/cli-reference#sandbox-create):

```bash
sandbox create --connect --vcpus 32
```

Learn more about Sandbox in the [docs](/docs/vercel-sandbox).

---

📚 **More updates:** [View all changelog entries](/changelog/sitemap.md) | [Blog](/blog/sitemap.md)