angular / angular2-seed

MIT License
1.01k stars 640 forks source link

How to import ng2-bootstrap with webpack #163

Open liudianliang opened 7 years ago

liudianliang commented 7 years ago

I don't konw how to import ng2-bootstrap with webpack,Can you tell me that? Thank you

willyelm commented 7 years ago

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 {}