From c61205d06fa1efb3e91783bf1de5905a78f1d06b Mon Sep 17 00:00:00 2001 From: Will Binns-Smith Date: Wed, 2 Apr 2025 15:18:59 -0700 Subject: [PATCH] Alternate bundler example: use `canary` version The `latest` version is old and we now canary-gate Rspack support. Some folks are referencing this example now, so make it work using canary. This can be set back to `latest` once 15.3.0 is published. --- examples/with-rspack/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/with-rspack/package.json b/examples/with-rspack/package.json index 04053fa663539..1a07a7d44ec21 100644 --- a/examples/with-rspack/package.json +++ b/examples/with-rspack/package.json @@ -11,7 +11,7 @@ "react-dom": "^18.3.1" }, "devDependencies": { - "@next/plugin-rspack": "latest", + "@next/plugin-rspack": "canary", "@types/node": "^22.10.1", "@types/react": "^18.3.12", "typescript": "^5.7.2"