How to use foundation Sass with ember cli

I am new to both ember and Sass to bear with me. I have used ember-cli to create my first ember application. I wanted to include foundation sass so I followed this SO question. I also installed ember-cli-sass npm module as I was not sure if this module is required or not.

After all of this, my compiled assets/<app-name>.css is blank. In the app.scss I have following two lines of code

@import 'bower_components/foundation/scss/normalize';
@import 'bower_components/foundation/scss/foundation';

Found this example here that’s exactly what you’re looking for.

https://github.com/aexmachina/ember-cli-sass#example

That worked like a charm. Thanks