You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
I'm trying to add django-tailwind to existing containerized django project(based on basic django compose example)
I followed this project's step by step instructions to achieve this. But as I'm adding to existing project I've done slight modification: used S6 overlay to run tailwind python manage.py tailwind start in parallel to python manage.py runserver.
I have successfully started development server and it periodically says its building my classes:
> [email protected] start
> npm run dev
> [email protected] dev
> cross-env NODE_ENV=development tailwindcss --postcss -i ./src/styles.css -o /code/static/css/dist/styles.css -w
and ... nothing happens, styles.css doesn't get created or updated.
If I kick production build from container, everything works as expected:
Hello
I'm trying to add django-tailwind to existing containerized django project(based on basic django compose example)
I followed this project's step by step instructions to achieve this. But as I'm adding to existing project I've done slight modification: used S6 overlay to run tailwind
python manage.py tailwind start
in parallel topython manage.py runserver
.I have successfully started development server and it periodically says its building my classes:
and ... nothing happens, styles.css doesn't get created or updated.
If I kick production build from container, everything works as expected:
and I have updated tailwind styles.css for my app.
Could you help me to fix or at least recommend how to troubleshoot development server?
The text was updated successfully, but these errors were encountered: