I am trying to add bootstrap to my angular project but I am not able to. I am not getting any errors either.
I even tried some of the solutions on stackoverflow. I am using Angular 7. I have installed bootstrap, jquery and popper.js. I have also added them to angular.json.
Below is my angular.json
"styles": [ "src/styles.css", "./node_modules/bootstrap/dist/css/bootstrap.min.css" ], "scripts": [ "./node_modules/jquery/dist/jquery.min.js", "../node_modules/popper.js/dist/umd/popper.min.js", "./node_modules/bootstrap/dist/js/bootstrap.min.js"], Following is my import statement in AppModule.ts
import { bootstrap } from 'bootstrap'; I havent included it in the imports array. Because when I did I got the following error
Unexpected value 'undefined' imported by the module 'AppModule' Any help would be much appreciated.