I'm new to angular and trying to use bootstrap 4 in conjunction with angular. First i installed ng-bootstrap like follow:
npm install --save @ng-bootstrap/ng-bootstrap
And some other related stuff in app.module.ts
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
...
NgbModule.forRoot()
And add some style into .angular-cli.json (put following code into styles array)
"../node_modules/@bootstrap/dist/css/bootstrap.min.css"
Everything work as expected but style!
I realize that dist sub-folder does not exist in '../node_modules/@bootstrap/' address.
I also tried to build the project using ng build, But it still doesn't exist. Note that "outDir": "dist" is checked in .angular-cli.json file.
Am i miss something?