Answer to
@BeetleJuice is not completely correct (or is no longer correct), the only thing you need to do is provide a loader for sass / scss files by doing this in webpack.config.js :
{ test: /\.sass$/, loaders: ['raw-loader', 'sass-loader']}
after which you can include your sass files directly in your components:
styleUrls: ['app.style.sass']
To do this, you need to install sass-loader:
npm install sass-loader node-sass webpack
source share