Custom theme issue
Scratching my head here. I've created a custom theme on another project without issue.
I have added Filament panels under /admin path and all works fine. I have run the commands for a custom theme and added the neccessary lines:
Vite Config:
I can see the css file on the source, however its not compiling the tailwind and shows me this.
For some reason its not building the tailwind assets. Custom plain CSS in this file will work. But the page styles are broken without the taildwind.!!!
I'm at a loss on how to get this file to actually compile. any help would be greatly appreciated.
Solution:Jump to solution
FIXED. For anyone else struggling with the same issue and note this was panel installed ontop of an existing NON tailwind project. The issue was I was missing 'tailwindcss: {},' from postcss.config.js
```
export default {
plugins: {...
1 Reply
Solution
FIXED. For anyone else struggling with the same issue and note this was panel installed ontop of an existing NON tailwind project. The issue was I was missing 'tailwindcss: {},' from postcss.config.js