TailwindCSS safelist is not working.
I've added a class
tailwind.config.js
h-[60vh] to the safelist in my custom theme, and I've also included the file path in the content section of the tailwind.config.js file. However, the class doesn't seem to be working as expected.tailwind.config.js
export default {
darkMode: "class",
safelist: [
'h-[60vh]',
],
content: [
"./app/Filament/**/*.php",
"./app/Livewire/**/*.php",
"./resources/views/**/*.blade.php",
"./vendor/filament/**/*.blade.php",
],
};
