I started a web project using tailwind. I do as tailwinf tutorial, install nodeJS and install tailwinf by npm, and then create 2 JSON file name 'package' and 'package lock'. I also config template path in a tailwind.config.js
file created when npm install tailwindcss like documentation said
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}
but when I tried to add tailwind directives to my CSS file
@tailwind base;
@tailwind components;
@tailwind utilities;
I just want to understand why these tailwind directives are not defined and solve