我使用Getx进行导航,它在内部使用Navigator 2.0。当我在Firebase Hosting中托管时,我无法加载特定的URL。
它在当地似乎运行良好。
我正在使用Url路径策略删除#
检查是否正确地将所有请求重写为/index.html
https://firebase.google.com/docs/hosting/full-config
firebase.json:
{
"hosting": {
"public": "www",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
}
]
},
...
之后再次部署。