我想知道如何在使用Meteor时按顺序加载scss文件。
不使用Meteor,我会按顺序制作application.scss
并加载.scss
文件,以便以后加载的样式表可以依赖于之前加载的mixins /变量。然后我在我的模板中加载application.scss
。
application.scss
@import 'bourbon/bourbon'
@import 'colors' // where I define color variables
...
// import other stylesheets that depend on `bourbon` and `colors`
但我无法做到这一点,因为Meteor会以未指定的顺序自动加载所有样式表。
我尝试将bourbon
和colors
置于client/lib
内,以便首先加载它们,但我无法在其他样式表中使用其中定义的mixins /变量。< / p>
有什么建议吗?