Я создал собственную тему, используя Angular Material 6. Когда я импортирую тему в styles.css, я получаю сообщение об ошибке:
. / SRC / styles.css
(./Node_modules/raw-loader!./node_modules/postcss-loader/lib??embedded!./src/styles.css)
Сборка модуля завершилась неудачно: ошибка: не удается разрешить «@ angular / material / theming»
в 'C: \ Users \ D3L1ghT \ Documents \ PROJECTS \ social-network \ techhub \ src'
Вот мой код для my-theme.scss:
@import "~@angular/material/theming";
@include mat-core();
$my-theme-primary: mat-palette($mat-custom-blue, 400);
$my-theme-accent: mat-palette($mat-custom-blue, A100, A100, A400);
$my-theme: mat-light-theme($my-theme-primary, $my-theme-accent);
$primary-color: map_get($my-theme-primary, 400);
$secondary-color: map_get($my-theme-accent, 500);
@include angular-material-theme($my-theme);
Вот код для styles.css:
/* @import "~@angular/material/prebuilt-themes/indigo-pink.css"; */
@import url("./my-theme.scss");
Это скриншот angular.json: angular.json