django-pipeline icon indicating copy to clipboard operation
django-pipeline copied to clipboard

Pipeline compiles/deploys all static files to `STATIC_ROOT` on every petition with `DEBUG=True`

Open kylebebak opened this issue 8 years ago • 1 comments

In the PIPELINE dict in settings, defining just one small group of stylesheets causes pipeline to deploy everything under STATICFILES_DIRS to STATIC_ROOT, on every petition. This happens working in development, where DEBUG = True.

It's as if pipeline were running collectstatic on every petition. As a test case, I configured it to read 6 css/less files, concat and minify them, and on every petition it deploys 1700 files to STATIC_ROOT. Shouldn't it read, compile, and minify only files that have changed since the last save?

kylebebak avatar Jun 17 '16 08:06 kylebebak

Have this issue too with 1.6.8 version and DEBUG=True.

prokaktus avatar Nov 05 '16 16:11 prokaktus