MAxX
MAxX

Reputation: 1

Unable to build CSS while using tailwind

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

Config File

Other things are good to goo,I checked the official documentation

Upvotes: 0

Views: 62

Answers (1)

Tarik
Tarik

Reputation: 465

I see the config has a typo which seems the problem.

content:["./TAILWIND/dist/*.hrtml"],

Try removing the r letter.

Upvotes: 0

Related Questions