Combine and Minify Multiple CSS / JS Files

Check out minify – it allows you combine multiple js, css files into one just by stacking them into a url, e.g.

<script src="https://stackoverflow.com/scripts/js/main.js,/scripts/js/adapter/adapter.js"></script>

We’ve used it for years and it does a great job and does it on the fly (no need to edit files).

Leave a Comment