Horje
install angular bootstrap 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>
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
installing bootstrap in angular 9
ng add @ng-bootstrap/ng-bootstrap
adding bootstrap to angular
 $ npm install --save bootstrap




Shell

Related
list all ssh connections ubuntu Code Example list all ssh connections ubuntu Code Example
check cpu temp linux Code Example check cpu temp linux Code Example
windows powershell symlink Code Example windows powershell symlink Code Example
disable ufw Code Example disable ufw Code Example
brew see list of installed packages Code Example brew see list of installed packages Code Example

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