You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before I get into this, I know there are several issue with importing sass from a npm package, but I think that this is a little bit different, since the sass file I am importing is trying to import another sass file from another npm package.
Here we go:
I want to use material design components for web inside my meteor application. Unfortunately when importing mdc from the npm package like this:
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.
Any suggestion how I can resolve this?
The text was updated successfully, but these errors were encountered:
Before I get into this, I know there are several issue with importing sass from a npm package, but I think that this is a little bit different, since the sass file I am importing is trying to import another sass file from another npm package.
Here we go:
I want to use material design components for web inside my meteor application. Unfortunately when importing mdc from the npm package like this:
I get the following error:
I guess this is due to the structure of mdc. The
material-components-web.scss
file imports all the single components, that are located innode_modules/@material
, not insidenode_modules/material-components-web
.Any suggestion how I can resolve this?
The text was updated successfully, but these errors were encountered: