I had the same problem! In my case, this was due to the fact that several @imports were listed as follows:
@import 'colors'; @import 'fonts'; @import 'size';
When I changed this, everything started working again:
@import 'colors', 'fonts', 'size';
Although this is not necessary:
"Sass imports have the same syntax as CSS imports, except that it allows you to separate commas for multiple imports, instead of each having its own @import." - sass-lang.com/documentation
philipdev
source share