“Cómo instalar Bootstrap en Angular” Código de respuesta

instalar 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>
Grumpy Gnu

Cómo agregar bootstrap en angular

@import "~bootstrap/dist/css/bootstrap.css"

 "styles": [
              "./node_modules/bootstrap/dist/css/bootstrap.css",
              "src/styles.css"              
            ],
Successful Skipper

Instale 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
Joyous Jellyfish

Instalación de bootstrap en Angular 9

ng add @ng-bootstrap/ng-bootstrap
Concerned Crossbill

instalar bootstrap angular

npm install --save bootstrap
Ankur

Cómo instalar Bootstrap en Angular

npm install bootstrap
Dizzy Dove

Respuestas similares a “Cómo instalar Bootstrap en Angular”

Preguntas similares a “Cómo instalar Bootstrap en Angular”

Más respuestas relacionadas con “Cómo instalar Bootstrap en Angular” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código