2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FireBase Hostingを始めよう

Posted at

まぁ、URL転載なんだが、躓いたところを共有しておく。

firebase Hostingの使用方法

https://dev.classmethod.jp/smartphone/firebase-using-hosting-service/
このサイトが分かりやすい。

しかし、以下の注意点があった。

  • 「firebase init」で作成される「firebase.json」の中身が空になる。(だった。)
    以下のコードを張り付けると動く。(細かい設定はこちらを参照。)
{
  "hosting": {
    "public": "public",
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ]
  }
}

他のサイトのサンプルでは、"public": "app"となっている。試していないけど、次の注意点の「public」フォルダを「app」フォルダにすれば動き出す。(試してはいない。どなたか報告していただきたいです)

  • 「firebase init」を実行してもフォルダ構成まで自動で作成してくれない。(くれなかった。)
    firebase initを実行したフォルダの配下に「public」フォルダを作成し、そこに静的アセットを配置すること。
2
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?