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 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,
The text was updated successfully, but these errors were encountered:
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,
The text was updated successfully, but these errors were encountered: