RPeraltaJr
6/22/2017 - 1:15 AM

Include Bootstrap in Angular Project (2 Options)

Include Bootstrap in Angular Project (2 Options)

/* OPTION 2 */
/* You can add global styles to this file, and also import other style files */
@import "~bootstrap/dist/css/bootstrap.min.css";
/* OPTION 1 */
...
...
"prefix": "app",
"styles": [
  "../node_modules/bootstrap/dist/css/bootstrap.min.css",
  "styles.css"
],
...
...
npm install --save bootstrap  

# make edits to [.angular-cli.json]

ng serve