docs(rsc): combine canary/experimental and react-server-dom-webpack sections #942
+37
−6
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Addresses feedback from #524 (comment)
Changes
Updated the
plugin-rscREADME to better explain how to use React canary and experimental versions after PR #915 enabled using locally installedreact-server-dom-webpack.What changed
Renamed and expanded "Canary and Experimental channel releases" → "Using React Canary and Experimental versions"
react-server-dom-webpackdirectly - the simpler approach enabled by feat(rsc): use locally installedreact-server-dom-webpackwhen available #915Merged "Customizing
react-server-dom-webpack" section into Option 2react-server-dom-webpack" section into Option 2Why
Before PR #915, users needed to use the pkg.pr.new preview releases (#524) to get canary/experimental React versions. After #915, users can simply install
react-server-dom-webpack@canaryor@experimentalin their own project - a much simpler approach.The previous documentation had these as separate, disconnected sections. This update combines them to show users both options with clear guidance.
Example
Users can now easily use React canary by adding to their
package.json:{ "dependencies": { "react": "canary", "react-dom": "canary", "react-server-dom-webpack": "canary" } }The plugin will automatically use the locally installed version instead of the vendored one.
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.