aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/grunt/utils.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/grunt/utils.js b/lib/grunt/utils.js
index 964c0317..c5ca4d23 100644
--- a/lib/grunt/utils.js
+++ b/lib/grunt/utils.js
@@ -154,7 +154,7 @@ module.exports = {
'--language_in ECMASCRIPT5_STRICT ' +
'--minerr_pass ' +
'--minerr_errors ' + errorFileName + ' ' +
- '--minerr_url http://docs.angularjs.org/minerr/ ' +
+ '--minerr_url http://errors.angularjs.org/ ' +
'--source_map_format=V3 ' +
'--create_source_map ' + mapFile + ' ' +
'--js ' + file + ' ' +
@@ -233,7 +233,7 @@ module.exports = {
//rewrite connect middleware
rewrite: function(){
return function(req, res, next){
- var REWRITE = /\/(guide|api|cookbook|misc|tutorial).*$/,
+ var REWRITE = /\/(guide|api|cookbook|misc|tutorial|error).*$/,
IGNORED = /(\.(css|js|png|jpg)$|partials\/.*\.html$)/,
match;