Answers for "how to install bootstrap 5 in angular 13"

1

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
Posted by: Guest on July-27-2020
6

install bootstrap angular

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

how to install bootstrap in angular

npm install bootstrap
Posted by: Guest on December-02-2020
0

install bootstrap in angular

$ npm install bootstrap
Posted by: Guest on December-31-2020
0

how to install bootstrap in angular 11

@import "~bootstrap/dist/css/bootstrap.css";
Posted by: Guest on May-06-2021
0

how to install bootstrap in angular 11

npm install jquery --save
Posted by: Guest on May-06-2021

Code answers related to "how to install bootstrap 5 in angular 13"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language