尝试使用gulp,panini,mustache,sass和我的一个问题构建自定义工作流程包括来自node_modules的部分内容,这里是main.scss文件的示例:
@import "node_modules/bootstrap/scss/mixins"; @import "settings";
如何避免输入_mixins.scss的完整路径?
您的问题与此类似:Sass导入不爬网node_modules以查找适当的包
您可以通过将includePaths参数传递给gulp sass来包含路径.例如
.pipe($.sass({ includePaths: ['node_modules/bootstrap/scss/', 'another/path'] })