Horje
install bootstrap in angular Code Example
install angular bootstrap
# From project directory:
npm install --save bootstrap
npm install --save jquery

# Now edit `angular.json`
# Position: `projects -> architect -> build -> options`
# To `styles`, add "node_modules/bootstrap/dist/css/bootstrap.css"
# To `scripts`,
#   add "node_modules/jquery/dist/jquery.js"
#   and also "node_modules/bootstrap/dist/js/bootstrap.js"
# Test with
# <<div class="alert alert-primary" role="alert"> Bootstrap alert</div>
how to add bootstrap in angular
@import "~bootstrap/dist/css/bootstrap.css"

 "styles": [
              "./node_modules/bootstrap/dist/css/bootstrap.css",
              "src/styles.css"              
            ],
install bootstrap angular 9
From angular cli:

npm install --save bootstrap
npm install --save jquery

Then add the following paths to angular.json:

"node_modules/bootstrap/dist/css/bootstrap.css" in the projects -> architect -> build -> styles array
"node_modules/jquery/dist/jquery.js" in the projects -> architect -> build -> scripts array
"node_modules/bootstrap/dist/js/bootstrap.js" in the projects -> architect -> build -> scripts array
install bootstrap angular
npm install --save bootstrap
install bootstrap in angular 9
npm install bootstrap --save
install bootstrap in angular
$ npm install bootstrap




Shell

Related
pm2 show command Code Example pm2 show command Code Example
delete all files in linux Code Example delete all files in linux Code Example
center table markdown github Code Example center table markdown github Code Example
yarn install chocolatey Code Example yarn install chocolatey Code Example
angular bootstrap Code Example angular bootstrap Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
14