Transactions
Dan 2017-09-02 00:51:01 -06:00
parent 13a9e46399
commit 3766fedbb5
1 changed files with 1 additions and 0 deletions

View File

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