Is there a proper way to use bootstrap-material-design in an Angular 4 app with Angular CLI?
In my project, I included the css file in my styles.css like this:
@import "~bootstrap-material-design/dist/css/bootstrap-material-design.min.css";
Although I can access the bootstrap-material-design classes, some elements such as inputs are not functioning correctly.
I've tried adding the jQuery and bootstrap-material-design scripts to the .angular-cli.json file, but it didn't solve the issue.
According to the documentation, I need to initialize the material JavaScript on my site by adding the following script:
$.material.init()