I have a entry file:
@use '_mixins';
@use '_default';
Now when I use a mixin in default.scss
it throws the error:
Dart Sass failed with this error: Error: Undefined mixin.
Since @use
is encouraged I don't understand why this doesn't work. If I write @import
like in the olden days it works well:
@import '_mixins';
@import '_default';
This way all is nice and dandy.
How do I have to use @use
and still have everything available?