我用 grunt 生成了一个缩小的角度应用程序。在站点中,我收到一个错误:
Cannot GET /views/tabs.html
但是,当我查看缩小的 script.js 时,我可以看到:
angular.module("app").run(["$templateCache", function($templateCache) {
"use strict";
$templateCache.put("views/tabs.html", '<div>hello</div>'}
]);
如何解决此错误?为什么它对应用程序不可见?