reactjs / react.dev

The React documentation website
https://react.dev/
Creative Commons Attribution 4.0 International
11.03k stars 7.53k forks source link

RTL Languages Support #6138, generates an error #6231

Open NGHdeveloper opened 1 year ago

NGHdeveloper commented 1 year ago

The latest update RTL Languages Support #6138, generates an error when launching the server in a local repository with the yarn dev command.

imagen imagen

AhmedBaset commented 1 year ago

This happens because the #6138 updates Tailwindcss to 3.3, but your node_modules has tailwindcss@3.1.

Some Tailwind classes were not present in the previous version of tailwindcss.

To resolve this, you can run the following commands:

# Remove node_modules
rm -rf node_modules
# Install dependencies
yarn

or

yarn add -D tailwindcss@3.3
NGHdeveloper commented 1 year ago

Thank you for your quick response, I will do as instructed.

NGHdeveloper commented 1 year ago

@A7med3bdulBaset, Perfectly solved, thank you very much!