From 5489720d4099540b381b9fbc0e727c2fd8e52936 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Tue, 7 Sep 2021 09:32:16 +0200 Subject: [PATCH] User pipeline's SASS compiler because of issue with BOM. Fixes #4239. --- src/redakcja/settings/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redakcja/settings/__init__.py b/src/redakcja/settings/__init__.py index dca64e5f..9bca2631 100644 --- a/src/redakcja/settings/__init__.py +++ b/src/redakcja/settings/__init__.py @@ -124,7 +124,7 @@ PIPELINE = { 'CSS_COMPRESSOR': None, 'JS_COMPRESSOR': None, 'COMPILERS': ( - 'libsasscompiler.LibSassCompiler', + 'pipeline.compilers.sass.SASSCompiler', ), # CSS and JS files to compress -- 2.20.1