0

I created Angular project using angular cli. I installed bootstrap using npm. But, it's not applying bootstrap styles without adding bootstrap css in index.html.

How to resolve this? I don't want to add bootstrap css manually.

Veera
  • 397
  • 1
  • 4
  • 21

1 Answers1

0

Add this to your .angular-cli.json file:

"styles": [
    "../node_modules/bootstrap/dist/css/bootstrap.min.css"
],