I have implemented django_compressor in my project.
This is how I set it up in my template :
{% load compress %}
{% compress css %}
<link rel="stylesheet" href="/media/css/master.css" type="text/css" charset="utf-8">
{% endcompress %}
In my settings :
DEBUG = True
MEDIA_URL = '/media/'
INSTALLED_APPS = [
'compressor',
// Add other installed app here.
]
However, after implementing these changes, my CSS file doesn't seem to be loading. When I remove the {% compress css %}
tag, the CSS starts rendering properly. Any suggestions on what could be going wrong?