From 3766fedbb54f255a91b598762013c318e1667106 Mon Sep 17 00:00:00 2001 From: Dan Date: Sat, 2 Sep 2017 00:51:01 -0600 Subject: [PATCH] message --- Server/src/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Server/src/app.js b/Server/src/app.js index 41df9d1..d22abd3 100644 --- a/Server/src/app.js +++ b/Server/src/app.js @@ -5,6 +5,7 @@ var path = require('path'); app.use(express.static('www')); app.get('/*', function (req, res) { + console.log(__dirname); console.log(req.originalUrl); res.sendFile(path.join(__dirname, '../www', 'index.html')); })