Ember-cli Node.js - Using Neat and Bourbon

1k Views Asked by At

I'm not sure the correct way to include 'Neat' in an ember-cli application.

I installed Bourbon using the ember-cli-bourbon addon, and then just @import "bourbon" in my scss file.

Any suggestions?

1

There are 1 best solutions below

4
On BEST ANSWER

You should be able to install neat via bower:

bower install neat --save

Then in your scss file, after you import bourbon:

@import 'bourbon';
@import 'bower_components/neat/app/assets/stylesheets/neat';