Horje
install bootstrap in angular 9 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
how to install bootstrap in angular
npm install bootstrap
Source: loiane.com




Shell

Related
set defualt branch to main git Code Example set defualt branch to main git Code Example
could not find tools.jar. please check that /library/internet plug-ins/javaappletplugin.plugin/contents/home contains a valid jdk installation. Code Example could not find tools.jar. please check that /library/internet plug-ins/javaappletplugin.plugin/contents/home contains a valid jdk installation. Code Example
xcode path mac Code Example xcode path mac Code Example
Module not found: Error: Can't resolve Code Example Module not found: Error: Can't resolve Code Example
how to install bootstrap in angular 11 Code Example how to install bootstrap in angular 11 Code Example

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