DEV Community

Manthan Ankolekar
Manthan Ankolekar

Posted on

Adding Bootstrap to Angular projects.

First Install bootstrap using CLI command :

npm install bootstrap
Enter fullscreen mode Exit fullscreen mode

Next add these in angular.json :

"scripts": [
    "./node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"
],
"styles": [
    "./node_modules/bootstrap/dist/css/bootstrap.min.css"
],
Enter fullscreen mode Exit fullscreen mode

Top comments (0)