[Django]-Django staticfiles not being updated in browser

1👍

I get the same error sometimes when developing on local. The best solution I came up is restarting the browser. I still don`t know if is a Chrome related issue as it happens also with other frameworks(on local development). Try to clear your browser cache.

👤Bogdan

1👍

Assuming “local mode” means you are running a regular runserver, check out if you are not running two copies of it! (In windows, open your task manager and check for more, unwanted instances of python.exe and kill them).

If you are not using runserver, but a production server, consider using a cache busting technique.

👤Udi

Leave a comment