Use Tailwind classes in Custom Pages
Hello guys,
I'm having an issue with Tailwind styles not working in custom pages of Filament. Here's the situation:
```js
module.exports = {
content: [
'./resources/*/.blade.php',
],
};
I'm having an issue with Tailwind styles not working in custom pages of Filament. Here's the situation:
- I've created a custom page in Filament with
php artisan make:filament-page. - I'm trying to use Tailwind classes like
bg-blue-500andtext-whitein this page. - These Tailwind classes are working fine in my user-frontend, where I am using them with Svelte.
- However, in my Filament custom page, the styles aren't being applied at all.
tailwind.config.js and it includes my custom views.```js
module.exports = {
content: [
'./resources/*/.blade.php',
],
};