标签: angularjs gruntjs
当您运行grunt来构建应用时,在dist文件夹中创建的vendor.css文件会错误地链接'字形为/app/bower_componenets/.../glyphicons-...而不是../fonts/glyphicons-...
grunt
dist
/app/bower_componenets/.../glyphicons-...
../fonts/glyphicons-...
答案 0 :(得分:2)
在Gruntfile.js注释掉以下行以解决此问题:
Gruntfile.js
cssmin: { options: { //root: '<%= yeoman.app %>' } }
来源:https://github.com/yeoman/generator-angular/issues/645