pytailwindcss icon indicating copy to clipboard operation
pytailwindcss copied to clipboard

Results 6 pytailwindcss issues
Sort by recently updated
recently updated
newest added

Setting pytailwindcss in the requirements.txt file causes error after tailwindcss command is ran from bash inside the container. Dockerfile: COPY requirements.txt /tmp/pip-tmp/ RUN pip --disable-pip-version-check install -r /tmp/pip-tmp/requirements.txt && \...

it load blank output.css when you run this on the terminal ./tailwindcss -i input.css -o output.css --watch

https://tailwindcss.com/docs/installation uses `-D` switch with `npm install`, which means that it is a dev dependency. This makes sense as our styles are pre-compiled, so we don't need a compiler during...

I configured Flask-Assets to create the output css using Bundle. However in production the binary tailwindcss is not found. This is because after pip install pytailwindcss the binary is not...

Thanks for creating this library. I am using flask to develop a web app and would like to use tailwind for front-end work. Following is the structure for the app:...

Tailwindcss stopped working and I go following error that the tailwindcss binary was not found.: ``` File "/redacted/.venv/lib/python3.12/site-packages/pytailwindcss/__init__.py", line 50, in run output = subprocess.run([str(bin_path)] + tailwindcss_cli_args, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File...