Skip to content
Advertisement

Documentation for version 4-11.4 of material ui is missing

Since the rollout of MUI v5.0.0-rc.1 all the doc pages of v4 other than v4.12.3 seem to have disappeared.

https://mui.com/versions/

and

https://v4-11-4.material-ui.com/ (now broken)

where can I find the previous versions documentations ?

Thanks !

Advertisement

Answer

Might be related: https://github.com/mui-org/material-ui/issues/28368

You can get the previous versions from git.

Clone the branch with the version you want

git clone --single-branch --branch v4.11.4 https://github.com/mui-org/material-ui.git

Then cd to the folder

cd material-ui

Run it as dev (faster but has to compile individual pages)

yarn && yarn docs:dev

Or build and start it (a bit slower but worth it)

yarn && yarn docs:build && yarn docs:start

Then access it in http://localhost:3000/

You must use yarn, npm install --global yarn if you don’t have it

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement