While working with angular5, I encountered the 'No mixin named nb-install' error when running npm start or serve
Module build failed:
undefined
^
No mixin named nb-install
Backtrace:
stdin:13
in E:\mrb_bugfixes\bottledepot\src\app\@theme\styles\styles.scss (line 13, column 10)
The file that is causing the issue is named 'styles.scss'
@import 'themes';
// framework component themes (styles linked to theme variables)
@import '~@nebular/theme/styles/globals';
@import '~@nebular/auth/styles/all';
// loading progress bar theme
@import './pace.theme.scss';
// install the framework and custom global styles
@include nb-install() {
// framework global styles
@include nb-theme-global();
@include nb-auth-global();
// loading progress bar
@include ngx-pace-theme();
.custom-control .custom-control-indicator {
border-radius: 50%; // TODO: quickfix for
https://github.com/akveo/nebular/issues/275
}
};