gpt4 book ai didi

reactjs - 出现 404-Page Not Found 错误,当我重新加载 Firebase 上的 React 应用程序时

转载 作者:行者123 更新时间:2023-12-04 01:26:33 26 4
gpt4 key购买 nike

我已经在 firebase 上部署了我的 React 应用程序,当我重新加载页面时,它显示了下面的页面。
enter image description here

Firebase.json

{
"hosting": {
"public": "build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"]
}
}

不是单页应用程序

最佳答案

添加以下内容 rewrites规则:

"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
}

这将确保 Firebase 为您请求的任何路由提供您的 React 应用程序。

关于reactjs - 出现 404-Page Not Found 错误,当我重新加载 Firebase 上的 React 应用程序时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61819746/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com