TailwindCSS safelist is not working.

I've added a class 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", ], };
error.png
Was this page helpful?