Setup:
$ npm init
$ npm install [email protected]
Place index.html, tailwind.config.js, postcss.config.js, and styles.css in the same folder.
Run the following which works ✅
$ npm install @tailwindcss/[email protected]
$ npx tailwindcss build styles.css -o output.css
Open index.html and see that hovering changes the color of the button
Now run the following which doesn't work ❌
$ npm install @tailwindcss/[email protected]
$ npx tailwindcss build styles.css -o output.css
Open index.html and see that hovering no longer changes the color of the button