Transactions
Dan 2017-09-01 23:56:57 -06:00
parent eddd0bbba8
commit dc7f250936
1 changed files with 1 additions and 1 deletions

View File

@ -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'));
})