[Fixed]-With uwsgi deployed Django, part css and js can get, others can not

1👍

You are probably touching the wrong directory.

When you run manage.py collectstatic all the static files off the different apps + the ones inside the static STATICFILES_DIRS, go to the static root.

Make sure to put the full path of the directory you are modifying inside STATICFILES_DIRS and then run python manage.py collectstatic

Leave a comment