diff --git a/index.js b/index.js index 5ad208b..84a245d 100644 --- a/index.js +++ b/index.js @@ -98,7 +98,7 @@ app.post("/payforalert", function(request, response) { // Anything that doesn't match the above, send back index.html app.get('*', (req, res) => { - res.sendFile(path.join(__dirname + './frontend-react/build/index.html')) + res.sendFile(path.join(__dirname + '/frontend-react/build/index.html')) }) app.listen(port, () => console.log(`Example app listening on port ${port}!`));