diff --git a/index.js b/index.js index e44f3140b..0f287ad29 100644 --- a/index.js +++ b/index.js @@ -201,7 +201,7 @@ app.get("/logout", function (req, res) { }) app.get("*", (req, res) => { - res.sendFile(path.resolve(__dirname, "build", "index.html")) + res.sendFile(path.resolve(__dirname, "../build", "index.html")) }) const PORT = process.env.PORT || 3001