Answers for "Adding bootstrap to angular project using terminal"

8

adding bootstrap to angular

npm install bootstrap
npm install jquery


Add this to angular.json

"styles": [
              "node_modules/bootstrap/dist/css/bootstrap.css",
              "src/styles.css"
            ],
            "scripts": [
              "node_modules/bootstrap/dist/js/bootstrap.js",
              "node_modules/jquery/dist/jquery.js"
            ]
Posted by: Guest on June-20-2021
0

Adding bootstrap to angular project using terminal

$ npm install --save bootstrap popper
Posted by: Guest on July-21-2021

Code answers related to "Adding bootstrap to angular project using terminal"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language