[Django]-Force re-collectstatic with django static?

1👍

I come here to see whether I can re-collectstatic without type ‘yes’.

Finally, I find it just have to add --no-input

python manage.py collectstatic --no-input

0👍

This will clear current files in the static directory and then collect static.

 python manage.py collectstatic --clear

Leave a comment