html
<!--{% compress css %}
<link rel="stylesheet" href="css/style1.css">
<link rel="stylesheet" href="css/style2.css">
<!--{% endcompress %}-->
python
# settings.py
INSTALLED_APPS = [
...
'compressor',
...
]
COMPRESS_ENABLED = True
COMPRESS_CSS_FILTERS = [
'compressor.filters.cssmin.CSSMinFilter',
]
COMPRESS_JS_FILTERS = [
'compressor.filters.jsmin.JSMinFilter',
]
STATIC_URL = '/static/'
STATIC_ROOT = os.path.join(BASE_DIR, 'static')
# template.html
<!--{% compress css %}
<link rel="stylesheet" href="{% static 'css/style1.css' %}">
<link rel="stylesheet" href="{% static 'css/style2.css' %}">
<!--{% endcompress %}-->