Skip to content

Instantly share code, notes, and snippets.

@chriskief
Last active December 28, 2015 12:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriskief/7502756 to your computer and use it in GitHub Desktop.
Save chriskief/7502756 to your computer and use it in GitHub Desktop.
# Old
COMPRESS_CSS_FILTERS = ['compressor.filters.css_default.CssAbsoluteFilter', 'compressor.filters.yui.YUICSSFilter']
# New
COMPRESS_CSS_FILTERS = ['compressor.filters.css_default.CssAbsoluteFilter', 'app.compressor.filters.YUglifyCSSFilter']
# Old
COMPRESS_JS_FILTERS = ['compressor.filters.jsmin.SlimItFilter']
# New
COMPRESS_JS_FILTERS = ['app.compressor.filters.YUglifyJSFilter']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment