Horje
how to install bootstrap in angular 11 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
how to install bootstrap in angular 11
npm install bootstrap --save
how to install bootstrap in angular 11
npm install popper.js --save
Source: hdtuto.com
how to install bootstrap in angular 11
@import "~bootstrap/dist/css/bootstrap.css";
Source: hdtuto.com
how to install bootstrap in angular 11
npm install jquery --save
Source: hdtuto.com




Shell

Related
how to fix could not fix var lock /var/lib/dpkg/lock ubuntu Code Example how to fix could not fix var lock /var/lib/dpkg/lock ubuntu Code Example
how to change date of file in linux Code Example how to change date of file in linux Code Example
how to install gnome user theme extension Code Example how to install gnome user theme extension Code Example
sudo amazon-linux-extras install Code Example sudo amazon-linux-extras install Code Example
E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) Code Example E: Could not get lock /var/lib/dpkg/lock-frontend - open (11: Resource temporarily unavailable) Code Example

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