Angular 7 - Bootstrap 4
In this article, we'll see how to setup bootstrap 4 in Angular 7.
Last updated
Was this helpful?
In this article, we'll see how to setup bootstrap 4 in Angular 7.
Last updated
Was this helpful?
Was this helpful?
sudo npm i -g @angular/cli@next
ng new angular7app
cd angular7app npm install ngx-bootstrap bootstrap --saveimport { AlertModule } from 'ngx-bootstrap';
...
@NgModule({
...
imports: [AlertModule.forRoot(), ... ],
...
}) "styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"styles.css",
], <alert type="success">hello</alert>ng serve -o