webpack-boilerplate
webpack-boilerplate copied to clipboard
SASS/SCSS not working
Hi,
I found an issue with the rule test for sass-loader. The regex must contain /i
at the end otherwise the test is not working. On my machine at least (windows).
Just replace this line in webpack.dev.js (and webpack.prod.js:
test: /\.(sass|scss|css)$/,
with
test: /\.(sass|scss|css)$/i,