试用 Yeoman (1.0.4)。yo angular
使用;生成了一个 Angular 应用程序 进入No
使用 Sass 安装 Bootstrap,因为我想要使用 LESS 的 Bootstrap v 3。
搭建脚手架后,为了获得 Bootstrap 3,我输入了:
bower install bootstrap
将引导程序安装到bower_components/bootstrap
文件夹中。但它没有在index.html
文件中链接/包含 Bootstrap 的 CSS 或 JS。为什么?
该index.html
文件确实有来自 bower_components 文件夹的 Angular js 文件:
<!-- build:js scripts/modules.js -->
<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>
<!-- endbuild -->
但不是引导文件。为什么?我必须手动添加/链接到它们吗?我究竟做错了什么?为我的应用程序生成脚手架后如何添加 Bootstrap ?