What to do if you try load an Nebular page and then this error occurs?
Error: Default pack is not registered.
Make sure to install the eva icon pack:
npm i --save @nebular/eva-icons
and then, import NbEvaIconsModule in AppModule.
import { NbEvaIconsModule } from '@nebular/eva-icons';
@NgModule({
imports: [
// ...
NbEvaIconsModule,
],
})
export class AppModule { }
And import NbIconModule in the module that are you using it.
import { NbIconModule } from '@nebular/theme';
@NgModule({
imports: [
// ...
NbIconModule,
],
})
export class PageModule { }
Restart the app and try again!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With