From eddd0bbba8d96b32bda22aa50a63feba0791c82b Mon Sep 17 00:00:00 2001 From: Dan Date: Fri, 1 Sep 2017 23:54:31 -0600 Subject: [PATCH] message --- Server/src/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/app.js b/Server/src/app.js index cd3531d..5bc31f2 100644 --- a/Server/src/app.js +++ b/Server/src/app.js @@ -4,7 +4,7 @@ var path = require('path'); app.use(express.static('../www')); -app.get('/*', function (req, res) { +app.get('/*', function (req, res) { console.log(req.originalUrl); res.sendFile(path.join(__dirname, './www', 'index.html')); })