I want to use material design components for web inside my meteor application. Unfortunately when importing mdc from the npm package like this:
@import "{}/node_modules/material-components-web/material-components-web";
I get the following error:
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
I guess this is due to the structure of mdc. The material-components-web.scss file imports all the single components, that are located in node_modules/@material, not inside node_modules/material-components-web.
I am using the fourseven:scss package to compile sass in my meteor application.
How can I resolve/fix this issue?