We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After updating from angular 13 to angular 14 we are having trouble with using this with angular material.
One of the material files had this in version 13
@use '../../../cdk/a11y'; @use './list-common'; @use './layout-common';
Which has since been replaced with
@use '@angular/cdk'; @use './list-common'; @use './layout-common';
It always fails on the new cdk import. I have tried to add that into the include files but nothing seems to work. Below is our options
Original version working with angular 13
var options = { inputFiles: ['src/app/css/export_variables.scss'], includePaths: ['src/app/css/', 'node_modules/@angular/material', ] };
What I have tried
var options = { inputFiles: ['src/app/css/export_variables.scss'], includePaths: ['node_modules/@angular/cdk/', 'src/app/css/', 'node_modules/@angular/material', ] };
Do you have any idea why the cdk path does not work?
I have tried manually changing it to ../../../cdk in the scss file, which does fix it but obviously cant be used as a solution.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After updating from angular 13 to angular 14 we are having trouble with using this with angular material.
One of the material files had this in version 13
Which has since been replaced with
It always fails on the new cdk import.
I have tried to add that into the include files but nothing seems to work. Below is our options
Original version working with angular 13
What I have tried
Do you have any idea why the cdk path does not work?
I have tried manually changing it to ../../../cdk in the scss file, which does fix it but obviously cant be used as a solution.
The text was updated successfully, but these errors were encountered: