Pretty straight forward issue. I have a global.scss that at the very top has this code:
@use "~material-components-web/material-components-web";
If I run it like that, it fails with this message:
If I use import instead like:
@import "~material-components-web/material-components-web.scss";
It fails with the following message:
Note at this point it is failing to include the dependency chain within material's codebase. This is outside of my code.
Pretty straight forward issue. I have a global.scss that at the very top has this code:
@use "~material-components-web/material-components-web";
If I run it like that, it fails with this message: If I use import instead like:@import "~material-components-web/material-components-web.scss";
It fails with the following message: Note at this point it is failing to include the dependency chain within material's codebase. This is outside of my code.