SYSTEM Cited by 2 sources
Rollup¶
Rollup is a JavaScript module bundler, the production bundler inside Vite 7. Plugin API + config shape is the interface Rolldown (Vite 8's Rust-based bundler) is compatible with.
Role on this wiki¶
vinext currently ships with Vite 7 / Rollup as the production bundler pending Rolldown stabilisation — produces the 1.6×-faster / 56 %-smaller-bundle half of the 2026-02-24 benchmark table.
Also the client-mode host in Vercel
Workflow DevKit's
three-mode SWC
compiler plugin — workflowTransformPlugin() from
@workflow/rollup hooks into Vite's build to rewrite workflow
call sites into HTTP client code + attach workflowId during
the user's framework build.
Seen in¶
- sources/2026-04-21-vercel-inside-workflow-devkit-how-framework-integrations-work
— client-mode host for WDK's SWC plugin via
@workflow/rollup'sworkflowTransformPlugin()hooked into Vite's build; rewrites workflow call sites in the framework build. - sources/2026-02-24-cloudflare-how-we-rebuilt-nextjs-with-ai-in-one-week — vinext's production bundler; 1.6× faster / 56 % smaller bundle half of the benchmark table.
Related¶
- systems/vite — Vite 7 ships Rollup.
- systems/rolldown — Rust-based successor.
- systems/vinext — production consumer.
- systems/esbuild — sibling bundler; esbuild is server-side in WDK's integration, Rollup is client-side.
- systems/vercel-workflow — 2026-04-21 integration.
- patterns/swc-plugin-three-mode-transform — the WDK pattern Rollup hosts for client-mode.