bootstrap-using-in-angular-linuxquery

Hi viewers, In this tutorial i will show you how to add the bootstrap framework inside your angular project

Install Bootstrap

npm install bootstrap --save

Install JQuery

npm install jquery --save

Install Popper.js

npm install popper.js --save

Next, add the below lines inside your angular.json file

"styles": [
       "node_modules/bootstrap/dist/css/bootstrap.min.css",
],
"scripts": [
      "node_modules/jquery/dist/jquery.min.js",
      "node_modules/bootstrap/dist/js/bootstrap.min.js"
]

Leave a Reply

Your email address will not be published. Required fields are marked *