CLI archive deployments are now up to 30% faster with split-tgz archive option
Vercel releases a split-tgz archive option for CLI deployments that splits large archives into smaller parts, improving upload speeds by up to 30% and avoiding file size and file count limits.
The was introduced for CLI deployments hitting rate limits like the . commonly use archive uploads as they generate thousands of files at build time.archive optionlimit on the maximum amount of filesPrebuilt deployments Previously, archive deployments were always compressed into one large file with the only existing option, . Deployments using may hit the . Additionally, uploading one large archive file is slower than uploading multiple file parts.--archivetgztgzfile size upload limit The resolves these issues by splitting large archives into smaller parts.
avoids the static file upload limit and uploads large prebuilt projects .beta split-tgz format split-tgzup to 30% faster Example usage: vercel deploy --archive=split-tgz Learn more about .CLI deployments Read more