You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I put a test.scss file into style directory and the styles wasn't applied.
body {
a {
color: red;
}
}
My experience with WebPack so far - it combines all .js into a single app.bundle.js - I would like to have same feature for the styles... Before I start reinventing the wheel - is it a matter of changing some settings in CSS loader, or maybe adding some other loader such as: https://github.com/jtangelder/sass-loader ?
Or maybe it is working all the time, it's just me not naming files correctly, not importing them?
I can confirm that test.css is working just fine while .scss fails to load:
The text was updated successfully, but these errors were encountered:
Uh oh!
There was an error while loading. Please reload this page.
Some reading: http://angular-tips.com/blog/2015/06/using-angular-1-dot-x-with-es6-and-webpack/
Having a look at the list of features:

Having look at the source code: https://github.com/preboot/angular-webpack/blob/master/webpack.config.js#L97-L102
I put a
test.scss
file intostyle
directory and the styles wasn't applied.My experience with WebPack so far - it combines all
.js
into a singleapp.bundle.js
- I would like to have same feature for the styles... Before I start reinventing the wheel - is it a matter of changing some settings in CSS loader, or maybe adding some other loader such as: https://github.com/jtangelder/sass-loader ?Or maybe it is working all the time, it's just me not naming files correctly, not importing them?
I can confirm that

test.css
is working just fine while.scss
fails to load:The text was updated successfully, but these errors were encountered: