我在heroku上部署了一个React App,每次刷新某个页面时,都会出现404错误,
像:Cannot GET /create
我已被搜索到,发现一个相关问题:
Question about 404 with React Router
所以我创建了一个static.json文件重定向到index.html,但是错误仍然发生。
{
"root": "build/",
"clean_urls": false,
"routes": {
"/**": "index.html"
}
}
有人在将响应应用程序部署到heroku时遇到问题吗?