Hello,
I am attempting to use the tailwind integration in Astro and I am not sure how to get the tailwind build process to happen like it suggests in the tailwind docs:
npx tailwindcss -i ./src/input.css -o ./dist/output.css --watch
Right now, I am having to restart my dev server to see updates to tailwind class calls.
When I was using tailwind with express I was able to see my changes dynamically as they happened by running the command I shared above.
My question is, does anyone know how to get tailwind to auto-build based off of changes using the tailwind integration?
Thank you,
Boysie