js-kyle / connect-assets

A Rails-style asset pipeline for Node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Concatenate CSS?

thameera opened this issue · comments

Is there a method to concatenate the CSS files? The README only explains JS concatenation.

@thameera Yep! Sorry it’s not more straightforward in the README.

It’s the same as JS concatenation — just use comments specific to the language you’re using. In CSS:

/*= require reset.css */

body { margin: 0; }

Thanks for the quick response! Just tried it and it works.