Answers for "installing bootstrap in angular 9"

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
3

install bootstrap in angular 9

npm install bootstrap --save
Posted by: Guest on April-11-2020
12

installing bootstrap in angular 9

ng add @ng-bootstrap/ng-bootstrap
Posted by: Guest on June-22-2020
0

angular bootstrap install

npm install --save bootstrap
npm install --save 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
4

adding bootstrap to angular

$ npm install --save bootstrap
Posted by: Guest on April-24-2020

Code answers related to "TypeScript"

Browse Popular Code Answers by Language