📌  相关文章
📜  angular erro aodicionar um projeto no firebase 无法向 https 发出请求:www.gstatic.com firebasejs release.json - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:39.662000             🧑  作者: Mango

代码示例1
//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
  }]}
}