Heroku React + Vite错误R10( Boot 超时)

rhfm7lfc  于 2023-11-19  发布在  React
关注(0)|答案(1)|浏览(127)

我试图在heroku上部署一个react + vite应用程序。这是我的Procfile web: npm run preview --port $PORT。但是在heroku上构建后,它显示了这些日志

2023-09-16T10:14:09.352404+00:00 heroku[web.1]: Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch
2023-09-16T10:14:09.372574+00:00 heroku[web.1]: Stopping process with SIGKILL
2023-09-16T10:14:09.547280+00:00 heroku[web.1]: Process exited with status 137
2023-09-16T10:14:09.582055+00:00 heroku[web.1]: State changed from starting to crashed

字符串
我尝试了谷歌上的一切,但没有任何帮助。任何帮助将不胜感激。

uurity8g

uurity8g1#

yarn add serve

字符串
现在将带有serve命令的start脚本添加到脚本中。

{
   //other scripts
   "start": "serve dist"
}


dist是项目内置的文件夹。

相关问题