Skip to content

Files

Latest commit

37a11ed · Jan 18, 2017

History

History
45 lines (32 loc) · 1.05 KB

README.md

File metadata and controls

45 lines (32 loc) · 1.05 KB

PostCSS for django-compressor

This module will let you use PostCSS as a filter with django-compressor. You can use any postcss plugin you wish (assuming the plugin is installed).

Installation

Install this package:

pip install django-compressor-postcss

You also need to install the postcss tool itself and depending on what plugins you plan to use, you should install those manually.

Example:

sudo npm install -g postcss-cli
sudo npm install -g autoprefixer postcss-font-magician

Configuration

Your Django's settings should look something like below.

COMPRESS_CSS_FILTERS = (
    ..
    'compressor_postcss.PostCSSFilter',
    ..
)

COMPRESS_POSTCSS_PLUGINS = (
    'autoprefixer',
    'postcss-font-magician'
)

COMPRESS_POSTCSS_PLUGINS determines the plugins that PostCSS will use.