Try integrating Redux Toolkit and React-Redux docs
Currently, the Redux, React-Redux, and RTK docs are split across three different sites.
It would be potentially useful to have all three docs sources available in one site.
Unfortunately, the most obvious way to do this would require converting the three separate repos into a monorepo, and I don't want to do that any time soon.
One suggestion was to try using Git submodules to pull the other two repos in, and then update the Redux docs config to reference some of those pages. Might be worth exploring just to see if it even works.
We could also move the docs into their own repo, separate from each code repo.
Problem there is it makes it really hard to coordinate lib+docs updates.
Like, right now we've got a bunch of docs updates for RTK 1.5 in https://github.com/reduxjs/redux-toolkit/pull/813 , and we don't want to have those updates live until the release goes out.
That could be a branch. FWIW Testing Library has one site repo and it seems to be working well so far.
Longer explanation of why things are split over in https://github.com/reduxjs/redux-toolkit/issues/2637
Some discussion with Sebastian Lorber of ways to do this with Docusaurus:
https://twitter.com/sebastienlorber/status/1596190164002693122
Also a comment from the DS Discord:
Yeah you could definitely do it during your build process - there are a few orgs using Docusaurus using this type of build methodology. The build pulls in all the docs into place and then they are built according to your config - probably with a docs plugin-per-lib setup. [Local dev] is complicated. you'd have to have a local build script that does the same. Git submodules could make it a bit easier.