你好,我有问题部署我的网站/应用程序到vercel。它是一个node/express后端和一个create-react-app前端。首先我要说的是,当地的一切都很完美。至于部署,当vercel构建它时,在其构建日志中出现这一行"警告:由于builds
存在于您的配置文件中,在项目设置中定义的构建和开发设置将不适用。了解更多:https://vercel.link/unused-build-settings".
不仅如此,当访问vercel时显示404 Not found。(https://note-keeper-node-backend-2gbi1g75b-orlandovsilva.vercel.app/)
也遵循本教程(https://dev.to/andrewbaisden/how-to-deploy-a-node-express-app-to-vercel-2aa)。
有什么问题吗?
如果在vercel中没有找到404,请尝试输入Settings->Project Settings->Environment Variables->Add New
Name field =>CIVALUE字段=>假
这对我有用。解决vercell部署404问题
检查项目的根目录是否正确。
删除所有的vercel。并粘贴如下:
{
"rewrites": [{ "source": "/(.*)", "destination": "/api" }]
}