How to properly install bootstrap 4 from angular cli in order for all bootstrap components to work?
I was use the following commands:
- npm install --save jquery
- npm install --save popper.js
- npm install --save bootstrap
and config the following in angular-cli.json file:
"scripts": [
"../node_modules/jquery/dist/jquery.slim.min.js",
"../node_modules/popper.js/dist/umd/popper.min.js",
"../node_modules/bootstrap/dist/js/bootstrap.min.js"
]
The popover and tooltips doesn't works.. but the bootstrap css is working!
Thanks!