Tan-Aki
Tan-Aki

Reputation: 307

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 !

Upvotes: 2

Views: 2565

Answers (2)

iunfixit
iunfixit

Reputation: 994

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

Upvotes: 2

Miguel von Halmelion
Miguel von Halmelion

Reputation: 61

You can find old documentation here:

https://v4.mui.com/

Upvotes: 5

Related Questions