我正在尝试在hreoku上部署我的项目,但我得到了错误
2022-05-20T07:45:17.754377+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=agro-log.herokuapp.com request_id=80aa6ef2-1c4c-4541-aaf5-c54e8b0cdec5 fwd="103.151.119.18" dyno= connect= service= status=503 bytes= protocol=https
Img显示问题
我也试图改变我的端口,但它不工作
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Our app is running on port ${ PORT }`);
});
输入图片描述
请为应用程序添加根端点。
之类的app.get("/", (req,res)=>{
res.send({message:"hello world"})
})