2016-08-29 56 views
4

例子:如何從Firebase主機中移除html文件?

我在火力託管了3個HTML文件:

  1. 的index.html
  2. test1.html
  3. test2.html

問:

如何刪除html文件test1.html?我很困惑,刪除, 是否設置json文件firebase.json或有其他方法? 感謝您的幫助

+2

刪除這些文件並運行'firebase deploy'。這不正常嗎? –

+0

好的謝謝,這是工作 –

回答

3

取決於你多麼想去掉,你有幾個選擇:

刪除文件

要刪除一個文件,本地刪除,並重新部署。

$ rm public/foo.html 
$ firebase deploy 

禁用託管

如果你想在火力地堡託管刪除整個網站,你可以disable hosting entirely

$ firebase hosting:disable 
? Are you sure you want to disable Firebase Hosting? 
    This will immediately make your site inaccessible! Yes 
✔ Hosting has been disabled for example-firebase. Deploy a new version to re-enable. 
相關問題