I have installed virtualenv in my localhost to run a django app with 1.8 version but when running it the css and js files doesn\'t load.
I get
Resour
If you happen to be using the Django whitenoise plugin, then the mimetypes module is not used, and you need to pass in a dictionary of custom types in settings.py:
mimetypes
settings.py
WHITENOISE_MIMETYPES = { '.xsl': 'application/xml' }