re-implement google analytics

This commit is contained in:
Athou
2014-08-11 15:11:01 +02:00
parent dd3455d273
commit e62c7141af
5 changed files with 62 additions and 4 deletions

View File

@@ -106,7 +106,8 @@ gulp.task('serve', function() {
var next = '^/next(.*)$ http://localhost:8083/next$1 [P]';
var logout = '^/logout$ http://localhost:8083/logout [P]';
var custom_css = '^/custom_css.css$ http://localhost:8083/custom_css.css [P]';
return [modRewrite([rest, next, logout, custom_css])];
var analytics = '^/analytics.js http://localhost:8083/analytics.js [P]';
return [modRewrite([rest, next, logout, custom_css, analytics])];
}
});
});