amarroMX / bunadmin

administration interface for bun ecommerce application
MIT License
0 stars 0 forks source link

Fix tailwindcss #1

Closed amarroMX closed 2 weeks ago

amarroMX commented 2 weeks ago

-Create new VM Ubuntu -Install nodjs with npm -Install python and poetry -Fork bunadmin repo -Build css with tailwindcss

amarroMX commented 2 weeks ago

estevanmaito-windmill-dashboard-1.0.2-0-g27e1092.zip

amarroMX commented 2 weeks ago

The problem was due to misconfiguration in the tailwindcss.config file for the content section. The path for html and javascript files was wrong, It was pointing to outside the project folder which created permission issues.

Wrong pattern -> //templates//*.{html, js} - pointing to outside project folder

Corrected pattern -> ..//templates//*.{html, js}