https://vercel.com/changelog/vercel-sandbox-snapshots-now-allow-custom-retention-periods (opens in new tab)
# Vercel Sandbox snapshots now allow custom retention periods **Published:** February 17, 2026 | **Authors:** Tom Lienard, Harpreet Arora, Luke Phillips\-Sheard --- Snapshots created with Vercel Sandbox now have configurable expiration, instead of the previous 7 days limit, along with higher defaults. ```typescript import { Sandbox } from '@vercel/sandbox'; import ms from 'ms'; const sandbox = Sandbox.create(); sandbox.snapshot({ expiration: ms('1d') }) ``` The expiration can be configur...
Read the original article