laravel-mix-tailwindcss
laravel-mix-tailwindcss copied to clipboard
Pseudoselector empty with prefix not working
What version of Tailwind CSS are you using? 3.3.1
What build tool (or framework if it abstracts the build tool) are you using? mix-tailwindcss 1.3.0 laravel-mix 5.0.9
What version of Node.js are you using? 16.19.1
Describe your issue
I trying use incredible tailwind with prefix tw- for class tw-empty:hidden, but rule is not created :(

Here is my tailwind.config.js:
module.exports = {
prefix: 'tw-',
plugins: [],
content: ['./public_html/**/*.phtml', './resources/**/*.js'],
theme: {
extend: {
fontFamily: {
sans: ['Roboto'],
serif: ['Lora']
}
}
}
}