angular2-seed
angular2-seed copied to clipboard
How to import ng2-bootstrap with webpack
I don't konw how to import ng2-bootstrap with webpack,Can you tell me that? Thank you
do you mean ng-bootstrap?
npm install --save @ng-bootstrap/ng-bootstrap
then:
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [AppComponent, ...],
imports: [NgbModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {}