Added luna template and deps

Change-Id: Idd3dcdee3a377a75733c333d4a754632111e17ee
diff --git a/src/interceptors.ts b/src/interceptors.ts
index 53fd7df..7707b0b 100644
--- a/src/interceptors.ts
+++ b/src/interceptors.ts
@@ -44,7 +44,7 @@
 export function NoHyperlinksInterceptor() {
   return {
     request: (req) => {
-      if (req.url.indexOf('.html') === -1) {
+      if (req.url.indexOf('.html') === -1 && req.url.indexOf('login') !== -1) {
         // NOTE this may fail if there are already query params
         req.url += '?no_hyperlinks=1';
       }