Previously had Tailwind included using CDN. now installed with npm, all the 3 .css files are being included but I can't see the styles being used in my html document.
Directory structure and link to style.css
tailwind.config.js is like this:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
}
package.json has tailwind css 3.3.3 included
All the paths to .css files of tailwind are correct (base, components, utilities and in network tabs can see their successful requests.
I tried checking links. paths. package.json and tailwind.config.js files. everything seems in order. why are styles still not being applied? I'm using simple CSS not SCSS/SASS.
index/mainjs file?