Re: Compiling CSS to one single CSS file

2016-12-18 Thread Vijay Khemlani
django-compressor does the job On Sun, Dec 18, 2016 at 7:08 AM, ludovic coues wrote: > Yes, collectstatic copy static files scattered inside all your apps > inside a single directory. This make it easier to serve the files > directly from your apache or nginx or a different server from the one >

Re: Compiling CSS to one single CSS file

2016-12-18 Thread ludovic coues
Yes, collectstatic copy static files scattered inside all your apps inside a single directory. This make it easier to serve the files directly from your apache or nginx or a different server from the one you use for django. As far as I know, django don't provide facility for turning a bunch of CSS

Compiling CSS to one single CSS file

2016-12-17 Thread Harold Gomez
Is there a way to compile multiple CSS to a single file in django. That means if there are 10 css files it means you have 10 http requests. But If I could compile it to one file I need one request. Is there a wa to do this in django. I saw collectstatic copy this to a folder(am I wrong?). -- You