📅  最后修改于: 2022-03-11 15:01:39.662000             🧑  作者: Mango
//In the root, it's needs to created manually firebase.json
{
"hosting": {
"public":"dist", //dist is local build project
"redirects": [ {
"source": "/api/:path*",
"destination": "https:///:path",
"type": 301
}]}
}