{
"hosting": {
"public": "build",
"ignore": ["firebase.json", "**/.*", "**/node_modules/**"],
"rewrites": [
{
"source": "**",
"destination": "/index.html"
},
{
"source": "/app/api",
"function": "app"
}
]
}
}
答案 0 :(得分:2)
尝试更改重写顺序,以使通配符在末尾。那为我解决了。
发件人:
"rewrites": [
{
"source": "**",
"destination": "/index.html"
},
{
"source": "/app/api",
"function": "app"
}
]
收件人:
"rewrites": [
{
"source": "/app/api",
"function": "app"
},
{
"source": "**",
"destination": "/index.html"
}
]