Transactions
Dan 2017-09-01 23:52:56 -06:00
parent 758a4d0e3a
commit 219e7c2e1e
1 changed files with 1 additions and 1 deletions

View File

@ -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 () {