python
INSTALLED_APPS = [
...
'compressor',
...
]
STATICFILES_FINDERS = [
...
'compressor.finders.CompressorFinder',
...
]
COMPRESS_ENABLED = True
COMPRESS_CSS_FILTERS = [
'compressor.filters.css_default.CssAbsoluteFilter',
'compressor.filters.cssmin.CSSMinFilter',
]
COMPRESS_JS_FILTERS = [
'compressor.filters.jsmin.JSMinFilter',
]
html
{% load compressed %}
{% compress css %}
<link rel="stylesheet" href="{% static 'css/style1.css' %}">
<link rel="stylesheet" href="{% static 'css/style2.css' %}">
<link rel="stylesheet" href="{% static 'css/style3.css' %}">
{% endcompress %}
html
{% load compressed %}
{% compress js %}
<script src="{% static 'js/script1.js' %}"></script>
<script src="{% static 'js/script2.js' %}"></script>
<script src="{% static 'js/script3.js' %}"></script>
{% endcompress %}