Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Dart Sass 在选择器中导入外部文件。当我使用@use 来实现这一点时,它会导致错误。
//error .selector { @use 'external-file'; }
我以前使用@import 来执行此操作,并且可以使用 node-sass。
.selector { @import 'external-file'; }
现在我想对 Dart Sass 做同样的事情,想知道怎么做。谢谢你。