我正在尝试将 Material Components Web(MDC-Web) sass 功能与 ember-cli-sass 一起使用。我已经用 Yarn 安装了 MDC-Web
在我的 ember-cli-build.js 文件中,我将 sass includePaths 设置为:
sassOptions: {
includePaths: ['node_modules/material-components-web','node_modules/@material']
}
然后在我的 app.scss 文件中尝试导入完整的组件库,如下所示:
@import "material-components-web";
但是我收到了错误:
错误:错误:找不到或无法读取要导入的文件:@material/button/mdc-button。
为什么 SASS 编译器找不到它?