0

I know that if I want to include bootstap to my angular2 app, the simplest way is to include css/js to my header...

What if I have 2 routes /bootstrap & /foundation that each one has different css framework...

The main index.html is one file with specific header... What can i do to have multiple ?

Michalis
  • 6,686
  • 13
  • 52
  • 78
  • look at this https://stackoverflow.com/questions/36292438/how-to-use-bootstrap-css-library-in-angular-2-project – core114 Sep 29 '17 at 09:48

1 Answers1

1

First download bootstrap.

npm install bootstrap —save

Then in style.css

@import '~bootstrap/dist/css/bootstrap.css';
user3302358
  • 76
  • 2
  • 10