firebase部署错误和fiebase.json空文件

时间:2017-06-02 07:21:34

标签: firebase firebase-hosting

我正在关注本教程Getting Started with Firebase Hosting on the Web - Firecasts

我正在尝试在firebase中托管一个简单的index.html文件但是当我输入 firebase deploy 时,它会给我以下错误:

找不到目标。有效目标是:数据库,存储,功能,托管。 hosting error image

我发现我的firebase.json文件为空,只包含 {}

2 个答案:

答案 0 :(得分:44)

再次运行firebase init

当您被要求时 - 您要为此文件夹设置哪些Firebase CLI功能?

按空格键选择功能,它会用星号标记该功能。

然后按Enter确认您的选择。

确保按空格键选择选项,然后按enter键。

答案 1 :(得分:0)

运行 firebase init ,如果您的 firebase.json 为空,只有 {} ,则添加

 {
  "hosting": {
    "public": "public",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ]
  }
}

&#34; public&#34;:&#34; app&#34; 替换为&#34; public&#34;:&#34; public&#34; < /强>

然后运行 firebase deploy