Before, I was including Tailwind using a CDN. Now, I have installed it with npm and all three .css files are included, but the styles are not appearing in my HTML document.
Here is the directory structure and a link to style.css
The content of tailwind.config.js looks like this:
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [],
theme: {
extend: {},
},
plugins: [],
}
The package.json includes Tailwind CSS version 3.3.3.
All paths to the .css files for Tailwind are correct (base, components, utilities) and I can see successful requests in the network tabs.
I have checked links, paths, package.json, and tailwind.config.js files, everything appears to be in order. Why are the styles still not being applied? Note that I am using simple CSS and not SCSS/SASS.