I have a rails 3 app and I am using the assets pipeline. In my application.css.scss I have if I do this:
@import 'foo.css';
after I compile the assets, foo.css is not concatenated in application.css instead the @import statemen becomes:
@import url(foo.css);
Is there some way I can force concatenation?
Try this
or
it will work fine for more information go through this http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html#import