An attempt by Joman (1.0.4). Generated Angular application with yo angular ; introduced No to install Bootstrap with Sass, since I need Bootstrap v 3 with LESS.
After scaffolding, to get Bootstrap 3, I entered:
bower install bootstrap
Installed the download in the bower_components/bootstrap folder. But he did not link / include Bootstrap CSS or JS in the index.html file. Why?
The index.html file contains Angular js files from the bower_components folder:
<script src="bower_components/angular-resource/angular-resource.js"></script> <script src="bower_components/angular-cookies/angular-cookies.js"></script> <script src="bower_components/angular-sanitize/angular-sanitize.js"></script> <script src="bower_components/angular-route/angular-route.js"></script>
But not boot files. What for? Should I add / link to them manually? What am I doing wrong? How to add Bootstrap after creating a scaffold for my application?
source share