我希望将Firebase云功能从https://us-central1-project-id.cloudfunctions.net/重定向到我用于托管的自定义域。我将React.js用于前端框架,并认为配置为单页应用程序的选项可能是导致此方法不起作用的原因。
我尝试按照Firebase文档中的说明在rewrites
的{{1}}下的hosting
字段中添加。 https://firebase.google.com/docs/hosting/functions
firebase.json
尽管它只是重定向到我的React apps 404页面。它应该执行云功能。此云功能是{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [{
"source": "/api/test",
"function": "test"
}]
},
...
}
。
非常感谢!