updates for heorku deploy

This commit is contained in:
Raghu-Ch
2018-09-10 13:44:52 -04:00
parent 6f4770fb6f
commit 059d723ef1
2 changed files with 8 additions and 5 deletions

View File

@@ -5,12 +5,12 @@ const path = require('path');
const app = express();
// Serve only the static files form the dist directory
app.use(express.static(path.join(__dirname + 'dist')));
app.use(express.static(__dirname + '/dist/zid'));
app.get('/*', function (req, res) {
res.sendFile(path.join(__dirname + 'dist/index.html'));
res.sendFile(path.join(__dirname + '/dist/zid/index.html'));
});
// Start the app by listening on the default Heroku port
app.listen(process.env.PORT || 8080);
app.listen(process.env.PORT || 8080);