Argument $map1 of map-merge($map1, $map2) must be a map
Hey @lakstap, please post your package.json package-lock.json, npm and node version so that we can check.
i had this same problem with an anduglar 7.x project
i had this same problem with an anduglar 7.x project
Hi, did you find a solution? I am having the same problem.
Thanks
Can someone consolidate a reproducible example? Otherwise, it seems impossible to guess.
Node Version - v11.6.0
NPM Version - 6.5.0-next.0
Ubuntu 18.04.1 LTS
Angular CLI Version - 7.2.3
ng new project (use routing, use scss)cd projectng serve (success)ng add @nebular/theme (corporate, yes, yes)ng serve (success)@import '~@nebular/auth/styles/all'; and @include nb-auth-global(); in styles.scss filestyles.scss before
@import 'themes';
@import '~@nebular/theme/styles/globals';
@include nb-install() {
@include nb-theme-global();
};
styles.scss after
@import 'themes';
@import '~@nebular/theme/styles/globals';
@import '~@nebular/auth/styles/all';
@include nb-install() {
@include nb-theme-global();
@include nb-auth-global();
};
ng serve (fail) - error mentioned by original posterAm I missing anything?
Node Version - v11.6.0
NPM Version - 6.5.0-next.0
Ubuntu 18.04.1 LTS
Angular CLI Version - 7.2.3
ng new project(use routing, use scss)cd projectng serve(success)ng add @nebular/theme(corporate, yes, yes)ng serve(success)- Following this guide to add auth
- Final step : Enable Styles - I've added the
@import '~@nebular/auth/styles/all';and@include nb-auth-global();in styles.scss filestyles.scss before
@import 'themes'; @import '~@nebular/theme/styles/globals'; @include nb-install() { @include nb-theme-global(); };styles.scss after
@import 'themes'; @import '~@nebular/theme/styles/globals'; @import '~@nebular/auth/styles/all'; @include nb-install() { @include nb-theme-global(); @include nb-auth-global(); };
ng serve(fail) - error mentioned by original posterAm I missing anything?
i have the same error at the same step!
Node Version - v10.15.0
NPM Version - 6.4.1
Angular CLI Version - 7.2.3
I changed the order of imports and the error is gone.
@import '~@nebular/auth/styles/all';
@import 'themes';
@import '~@nebular/theme/styles/globals';
@include nb-install() {
@include nb-theme-global();
@include nb-auth-global();
};
I am not sure what's the reason behind it.
@aucros give this a try.
@nnixaa
Hi, do you have any theories regarding this?
Do the order of the imports matter?
Thanks.
Most helpful comment
I changed the order of imports and the error is gone.
I am not sure what's the reason behind it.
@aucros give this a try.