I move my first steps with angular 2, in particular I use angular-cli official tool to create new project.
I created a new project in this way
ng new [my-project-name]
The project was created correctly.
After that I would like to install bootstrap 4, and I follow the official guide in angular-cli page.
I install bootstrap with npm:
npm install bootstrap@next
and I add the line in my angular-cli.json:
"scripts": [
"../node_modules/jquery/dist/jquery.js",
"../node_modules/tether/dist/js/tether.js",
"../node_modules/bootstrap/dist/js/bootstrap.js"
],
"styles": [
"styles.css",
"../node_modules/bootstrap/dist/css/bootstrap.css"
],
in app object.
When I build the app and run it in server with: ng serve
I don't find in index.html the reference for bootstrap css and javascript.
I don't understand if import of this file is automatically added in my index.html or I need to add it manually.