Add Bootstrap - lukaskellerstein/AngularSeed GitHub Wiki
https://github.com/valor-software/ngx-bootstrap/blob/development/docs/getting-started/ng-cli.md
Add Bootstrap libraries
yarn add ngx-bootstrap
yarn add [email protected]
Add into Angular CLI
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css",
],
Create Custom Bootstrap Module
ng generate module mybootstrap --flat --module=app
Insert this into module :
import { NgModule } from '@angular/core';
import {
AlertModule,
ButtonsModule,
BsDropdownModule
} from 'ngx-bootstrap';
@NgModule({
imports: [
AlertModule.forRoot(),
ButtonsModule.forRoot(),
BsDropdownModule.forRoot()
],
exports: [
AlertModule,
ButtonsModule,
BsDropdownModule
]
})
export class MybootstrapModule { }