Level 104
Did you add the path to your Vue components directory in the content array of tailwind.config.css?
// tailwind.config.js
module.exports = {
content: ["./resources/js/**/*.vue"],
theme: {
extend: {},
},
plugins: [],
}
1 like