mirror of
https://github.com/cloudflare/vinext.git
synced 2026-05-09 08:25:34 +02:00
[GH-ISSUE #22] Vinext failes to work on new hello world Next.js app #8
Labels
No labels
enhancement
enhancement
good first issue
help wanted
nextjs-tracking
nextjs-tracking
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/vinext#8
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @taeold on GitHub (Feb 24, 2026).
Original GitHub issue: https://github.com/cloudflare/vinext/issues/22
Version
Reproduction Steps
Bootstrap a new Next.js project:
Install and initialize vinext:
Run the dev server:
@southpolesteve commented on GitHub (Feb 25, 2026):
Fixed in #31. Two things were broken: vinext init wasn't installing react-server-dom-webpack for App Router projects, and react-server-dom-webpack@19.2.4 requires react@^19.2.4 but create-next-app ships react@19.2.3. The fix adds rsdw to the init deps and does a React upgrade step first when the installed version is too old. We also added a CI job that scaffolds a real create-next-app project and verifies vinext init + dev server work end-to-end. Thanks for the detailed repro steps!