'ngbootstrap 12 with angular 13 ngbnavitem error
with angular 13 and ngbootstrap 12 getting following error ERROR NullInjectorError: R3InjectorError(AppModule)[NgbNavItem -> NgbNavItem -> NgbNavItem]: NullInjectorError: No provider for NgbNavItem!
Solution 1:[1]
Do following changes in app.module.ts
import { NgbNavItem } from '@ng-bootstrap/ng-bootstrap';
providers [.., NgbNavItem] // add into providers
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Omer Tekbiyik |
