Skip to content

Pithikos/django-compressor-postcss

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

PostCSS support for django-compressor

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published