首先,我必须为API建立路径,而对于常规网站,则必须为第二路径, 所以我想将API像这样子域分开
"rewrites":[
{
"source":"domain.com/**",
"destination":"/index.html"
},
{
"source": "api.domain.com/**",
"function": "app"
}
]
我尝试了很多方法,但都失败了,我该怎么办?
答案 0 :(得分:1)
虽然单个Firebase Hosting项目中可能有多个子域,但并未通过firebase.json
中的重写进行配置。相反,您需要在Firebase控制台中设置子域,然后通过Firebase CLI对其进行配置。有关步骤的完整演练,请查看documentation for multi-site setup。