I was starting my Vite React project. And as the next step I configured TailwindCSS as per Vite React documentation. Then I got this error message which targets the index.css file. The file only contained Tailwind CSS imports. How to solve this issue?
/* index.css */
@tailwind base;
@tailwind components;
@tailwind utilities;
Error messages:
- Unknown at rule @tailwind
- Unknown at rule @tailwind
- Unknown at rule @tailwind
I tried searching in the internet & connected some of my colleages. And they suggested me to retry the installation configuration or to ignore the error.