Answers for "how to add bootstrap in angular"

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
8

how to add bootstrap in angular

@import "~bootstrap/dist/css/bootstrap.css"

 "styles": [
              "./node_modules/bootstrap/dist/css/bootstrap.css",
              "src/styles.css"              
            ],
Posted by: Guest on July-31-2020
3

install bootstrap in angular 9

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

add bootstrap to angular

npm install bootstrap
----------------------
@import "~bootstrap/dist/css/bootstrap.css"

 "styles": [
              "./node_modules/bootstrap/dist/css/bootstrap.css",
              "src/styles.css"              
    ],
Posted by: Guest on June-17-2021
6

install bootstrap angular

npm install --save bootstrap
Posted by: Guest on April-22-2020
2

add bootstrap to angular

intstall bootstrap in angular
Posted by: Guest on July-20-2021

Code answers related to "how to add bootstrap in angular"

Code answers related to "Javascript"

Browse Popular Code Answers by Language