3

我想在我的流星应用程序中使用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。

我该如何解决/修复此问题?

4

1 回答 1

1

正如我在 github 上的问题中所写:

您需要创建一个 scss-config.json 文件,如下所述:https ://github.com/fourseven/meteor-scss#global-include-path

该文件的内容将是:

{
  "includePaths": [
    "{}/node_modules/"
  ]
}
于 2017-08-04T12:02:03.617 回答