First go to your angular-cli-build.js file and add an entry to the vendorNPMFiles array. This will copy your node_modules files to the / vendor directory at build time. Now you can link to your css in your index.html as /vendor/folder/file.css.
For example: angular-cli-build.js
var Angular2App = require('angular-cli/lib/broccoli/angular2-app'); module.exports = function(defaults) { return new Angular2App(defaults, { vendorNpmFiles: [ 'systemjs/dist/system-polyfills.js', 'systemjs/dist/system.src.js', 'zone.js/dist/**/*.+(js|js.map)', 'es6-shim/es6-shim.js', 'reflect-metadata/**/*.+(js|js.map)', 'rxjs/**/*.+(js|js.map)', '@angular/**/*.+(js|js.map)', 'bootstrap/dist/**/*.*', 'lodash/lodash.min.js' ] }); };
index.html snippet
<link rel="stylesheet" href="vendor/bootstrap/dist/css/bootstrap.min.css">
source share