I've just installed and created app/styles/app.scss
, but when I start with ember server the .css
file is not created. Is there any other set up I need, other than npm install --save-dev ember-cli-sass
?
I've also added this to my Brocfile.js, and run ember build
:
Edit: I've also tried compiling manually by adding this to my Brocfile.js and running ember build
:
var compileSass = require('broccoli-sass');
var app = new EmberApp();
var sassImportPaths = [
'app/styles'
];
var appCss = compileSass(sassImportPaths, './app/styles/app.scss', './assets/app.css');