Angular2 et Bootstrap
Angular2 , Webpack et Bootstrap 3
1 | npm install jquery bootstrap font-awesome --save |
Dans le fichier vendor.browser.ts, ajouter:
1 |
Dans le fichier webpack.common.js
1 | new webpack.ProvidePlugin({ |
Dans le fichier app.css
1 | @import "../../node_modules/bootstrap/dist/css/bootstrap.css"; |
Dans le fichier app.component.ts
1 | @Component({ |
Angular2 , Webpack et Bootstrap 4
1 | npm install jquery bootstrap@4.0.0-alpha.5 font-awesome tether --save |
Dans le fichier vendor.browser.ts, ajouter:
1 |
Dans le fichier webpack.common.js
1 | { test: /\.scss$/, loaders: ['raw-loader', 'sass-loader'] }, |
1 | new webpack.ProvidePlugin({ |
Dans le fichier app.scss
1 | @import "../../node_modules/bootstrap/scss/bootstrap"; |
Dans le fichier app.component.ts
1 | @Component({ |