我想在我的流星应用程序中使用web 材料设计组件。不幸的是,当像这样从 npm 包中导入 mdc 时:
@import "{}/node_modules/material-components-web/material-components-web";
我收到以下错误:
While processing files with fourseven:scss (for target web.browser):
/client/stylesheets/Application.scss: Scss compiler error: File to import: @material/animation/mdc-animation not found in
file: {}/node_modules/material-components-web/material-components-web.scss
我猜这是由于 mdc 的结构。该material-components-web.scss
文件导入所有单个组件,这些组件位于 中node_modules/@material
,而不是内部node_modules/material-components-web
。
我正在使用该fourseven:scss
包在我的流星应用程序中编译 sass。
我该如何解决/修复此问题?