导入不同的文件位置 STYLUS
Import different file location STYLUS
我有这样的文件结构
client
stylesheet
main.import.styl
template
a
a.styl
b
b.styl
然后我尝试像这样在 a.styl
和 b.styl
中导入 main.import.styl
@import main.import
(我也尝试了其他选项,例如 /main.import
、./...
等)结果我有 failed to locate @import main.import.styl
但是,如果我将 a
和 b
文件放入 stylesheet
中,一切正常
我的问题很简单:
文件在不同的文件夹中看不到彼此
folder1
a.import.styl
folder2
b.styl
正确的语法是:
@import '{}/client/stylesheet/main.import.styl'
请参阅 stylus package docs 了解更多信息。
我有这样的文件结构
client
stylesheet
main.import.styl
template
a
a.styl
b
b.styl
然后我尝试像这样在 a.styl
和 b.styl
中导入 main.import.styl
@import main.import
(我也尝试了其他选项,例如 /main.import
、./...
等)结果我有 failed to locate @import main.import.styl
但是,如果我将 a
和 b
文件放入 stylesheet
中,一切正常
我的问题很简单: 文件在不同的文件夹中看不到彼此
folder1
a.import.styl
folder2
b.styl
正确的语法是:
@import '{}/client/stylesheet/main.import.styl'
请参阅 stylus package docs 了解更多信息。