iTranslated by AI

The content below is an AI-generated translation. This is an experimental feature, and may contain errors. View original article

What's New in Vite+, Void, and Vite 8? Assessing the Impact on Next.js and Vercel

に公開

What is the "Unified Toolchain" that VoidZero is aiming for?

VoidZero is a company founded by Evan You, the creator of Vue.js and Vite. The same team develops Vite, Rolldown, Oxc, and Vitest, and provides a unified CLI called Vite+ as well as a deployment platform called Void.

Having raised $12.5 million in a Series A round led by Accel, they aim to resolve the fragmentation of the JavaScript toolchain through a Rust-based unified approach.

What can you do with the Vite+ (vp CLI) Alpha?

As of March 2026, the Alpha version has been released. The main commands are as follows:

Command Function Internal Tool
vp dev Development server Vite + Rolldown
vp build Production build Rolldown
vp create Project scaffolding
vp test Testing Vitest
vp check Type checking / Static analysis Oxc family
vp run Task runner Vite Task
vp pack Library packaging Rolldown

At the time of the ViteConf 2025 announcement, a unified vision including vite lint / vite fmt was shown, but the Alpha is provided primarily through the vp CLI for now.

Will Void become a competitor to Vercel?

Void is a deployment platform built on top of Cloudflare Workers. With a single command void deploy, the following are executed automatically:

  • Build
  • Migration execution
  • Resource provisioning
  • Production deployment

It features built-in infrastructure such as DB, KV, Object Storage, Auth, Queues, Cron, and AI inference. It scans source code to automatically detect and provision resources, eliminating the need for configuration files or dashboard operations.

While Vercel is a "framework-coupled" platform optimized for Next.js, Void takes a "framework-agnostic" approach that supports React, Vue, Svelte, and Solid equally.

How does the Vite 8 + Rolldown performance measure up?

Vite 8 adopted Rolldown as its sole bundler, eliminating the dual configuration of esbuild + Rollup.

The performance metrics from companies that have adopted it are as follows:

  • Linear: 46s → 6s (approx. 7.7x faster)
  • Ramp: 57% reduction
  • Others: 38–64% improvement

According to The Register, VoidZero claims it is "10–30x faster than Rollup." Development server startup is 3x faster, and full reloads are 40% faster.

What is the "Third Way" proposed by vinext?

In March 2026, Cloudflare released vinext. It is a reimplementation of the Next.js API on top of Vite, developed by one person in about a week for $1,100 with the help of AI.

Initial benchmarks are as follows:

  • Production build: 1.67s vs 7.38s for Next.js 16 (4.4x faster)
  • Bundle: 72.9 KB vs 168.9 KB gzip (57% reduction)

vinext is still in the experimental stage, but according to Cloudflare, some customers and CIO.gov have already started using it in production. The option to "keep the DX of Next.js while replacing the engine with Vite" has become a reality.

What structural pressures is Next.js facing?

Mainly, the following three points can be cited:

  1. Tight coupling with Turbopack: It is exclusive to Next.js, and the Vite plugin ecosystem cannot be used.
  2. Constraints on deployment targets: There is friction when deploying to targets other than Vercel (the existence of OpenNext is proof of this).
  3. Memory consumption: There is a trend of increasing memory usage during development (TanStack Start, based on Vite, remains stable at around 200 MB).

On the other hand, Next.js still leads with mature full-stack features such as Server Components and Partial Prerendering. Rather than a simple "replacement," a diversification of options based on use cases is underway.

Reference Sources


A detailed explanation of the content introduced in this article is available in the ZenChAIne article.

Discussion