Search code examples
node.jsember.jsember-clibourbonneat

Ember-cli Node.js - Using Neat and Bourbon


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?


Solution

  • 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';