Explorar o código

Fix prod serving of index.html

Thomas Dy %!s(int64=10) %!d(string=hai) anos
pai
achega
ce23045879
Modificáronse 1 ficheiros con 1 adicións e 0 borrados
  1. 1 0
      server.js

+ 1 - 0
server.js

@@ -12,6 +12,7 @@ var app = connect();
 var serve = serveStatic('.', {'index': []});
 var serveIndex = function(req, res, next) {
     if(isProd) {
+        req.url = '/index.html';
         serve(req, res, next);
     }
     else {