From 8866ad2c364320d3085499d4e2b4ed256cd8c55c Mon Sep 17 00:00:00 2001 From: Dan Date: Sat, 2 Sep 2017 00:03:35 -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 5d76af3..cd3531d 100644 --- a/Server/src/app.js +++ b/Server/src/app.js @@ -6,7 +6,7 @@ app.use(express.static('../www')); app.get('/*', function (req, res) { console.log(req.originalUrl); - res.sendFile(path.join(__dirname, '../www', 'index.html')); + res.sendFile(path.join(__dirname, './www', 'index.html')); }) app.listen(25776, function () {