diff --git a/Server/src/app.js b/Server/src/app.js index bd9d4bc..5d76af3 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 () {