Reputation: 1
The Config file :
/\*\* @type {import('tailwindcss').Config} */
module.exports = {
content:["./TAILWIND/dist/*.hrtml"],
theme: {
extend:{},
},
plugins:[],
}
The Code i ran in terminal :
npx tailwindcss -i ./TAILWIND/src/input.css -o ./TAILWIND/dist/Task1.css --watch
THE Screenshots The problem My Setup
Other things are good to goo,I checked the official documentation
Upvotes: 0
Views: 62
Reputation: 465
I see the config has a typo which seems the problem.
content:["./TAILWIND/dist/*.hrtml"],
Try removing the r
letter.
Upvotes: 0