shakyShane / jekyll-gulp-sass-browser-sync

A starter project including full setup for Jekyll, GulpJS, SASS & BrowserSync
728 stars 169 forks source link

Would this project add min css/js automation? #52

Closed weilinzung closed 7 years ago

weilinzung commented 8 years ago

Would this project add min css/js automation?

thanks!

esausilva commented 7 years ago

Just install the following gem "jekyll-minifier" and add the below in your _config.yml, also you can exclude whatever you want.

This gem will compress html, css, and js

gems:
    - jekyll-minifier
jekyll-minifier:
  exclude: ["*.min.*"]
weilinzung commented 7 years ago

nice. thanks!