I\'ve been messing around with the new collectstatic command and have got it working for my normal pages. That is to say, I am able to load my css at this locat
collectstatic
One solution might be to add your local IP to the ALLOWED_HOSTS list in settings.py
ALLOWED_HOSTS
e.g.
CURRENT_IP = '192.168.0.123' ALLOWED_HOSTS = ['127.0.0.1', 'localhost', '0.0.0.0', CURRENT_IP]