Hacker News new | ask | show | jobs
by zackattack 6150 days ago
What's the deal with the /static/{js|css}/combined.(hash) stuff? Is that part of a home-brewed deployment solution?
1 comments

Yeah, we implemented a build process that combines and minifies all the CSS and JS files, and also converts all the images to sprites to cut down on requests. The hash is to facilitate more efficient caching (you can set it to never expire).

I've been toying with the idea of open-sourcing it, but it would definitely need some cleanup first.