I have an ongoing React.js project with these react versions.
"react": "^17.0.2",
"react-scripts": "^4.0.3",
The project is running perfectly without any issues. I wanted to add tailwind CSS for some parts of my project. So I follow all the steps in this Official documentation guide
But tailwind is not working at all. I have noticed my npm start command is a bit different, that may be the reason. My start command is "start": "react-app-rewired start"
Normally when you create project with create-react-app it "start": "react-scripts start"
Is this the reason that tailwind is not working here? How can I fix this?
Any help! Thanks in advance.