使用Grunt和Http Server时,脚本Src用于bower_components

时间:2016-02-04 15:32:42

标签: angularjs gruntjs bower

在角度项目中,我无法链接到Bower组件中包含的库。在我的index.html页面上,我有以下

<script src="../bower_components/angular-flash-alert/dist/angular-flash.min.js"></script>

我的index.html位于app文件夹中,其中bower_components与&#39; app&#39;

处于同一级别

--app --index.html --bower_components

我在grunt中使用http-server服务,并想知道grunt是否是问题。我遇到过一些有类似问题的人,但是对于如何正确设置路径却没有明确的答案。

在我的gruntfile中,http服务器设置如下。我读过有人说,当提供服务时,bower组件将在app文件夹中提供,但我也尝试过这条路径而没有运气..

'http-server': { 1 2 ¦ 'dev': { 3 ¦ ¦ ¦ root: './app', 4 ¦ ¦ ¦ port: 8080, 5 ¦ ¦ ¦ host: "127.0.0.1", 6 ¦ ¦ ¦ cache: 10, 7 ¦ ¦ ¦ showDir : true, 8 ¦ ¦ ¦ autoIndex: true, 9 ¦ ¦ ¦ ext: "html", 10 ¦ ¦ ¦ runInBackground: true,

任何想法都会非常感激。

0 个答案:

没有答案