例如需要添加一下配置(在nginx中)
location / {
try_files $uri $uri/ /index.html;
}
在vercel中配置
添加vercel.json
文件,添加以下内容:
{
"rewrites": [{ "source": "/:path*", "destination": "/index.html" }]
}
location / {
try_files $uri $uri/ /index.html;
}
添加vercel.json
文件,添加以下内容:
{
"rewrites": [{ "source": "/:path*", "destination": "/index.html" }]
}
评论区