Here is my index.js file:
const PORT = process.env.PORT || 8453;
app.listen(PORT, () => console.log("Server is now listening on port: " + PORT));
However, when checking the deploy logs, I see:
Running build (yarn)
yarn run v1.22.4
$ node src/index.js
Server is now listening on port: 8453