mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-17 03:25:19 +00:00
Disable sass processor when not in debug mode
This commit is contained in:
parent
744bd33d99
commit
aefc02e3ee
1 changed files with 2 additions and 1 deletions
|
@ -193,7 +193,8 @@ STATICFILES_FINDERS = [
|
||||||
]
|
]
|
||||||
|
|
||||||
SASS_PROCESSOR_INCLUDE_FILE_PATTERN = r"^.+\.[s]{0,1}(?:a|c)ss$"
|
SASS_PROCESSOR_INCLUDE_FILE_PATTERN = r"^.+\.[s]{0,1}(?:a|c)ss$"
|
||||||
SASS_PROCESSOR_ENABLED = True
|
# when debug is disabled, make sure to compile themes once with `./bw-dev compile_themes`
|
||||||
|
SASS_PROCESSOR_ENABLED = DEBUG
|
||||||
|
|
||||||
# minify css is production but not dev
|
# minify css is production but not dev
|
||||||
if not DEBUG:
|
if not DEBUG:
|
||||||
|
|
Loading…
Reference in a new issue