如何从Firebase Hosting中删除html文件?

时间:2016-08-29 08:55:53

标签: firebase firebase-hosting

示例:

我在firebase托管中有三个html文件:

  1. 的index.html
  2. test1.html
  3. test2.html
  4. 问题:

    如何删除html文件test1.html?我很困惑,删除, 是否设置json文件firebase.json还是有其他方法吗? 谢谢你的帮助

1 个答案:

答案 0 :(得分:5)

根据您要删除的内容,您有几个选项:

删除文件

要删除单个文件,请在本地删除并重新部署。

$ rm public/foo.html
$ firebase deploy

停用主机

如果您要删除Firebase托管上的整个网站,可以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.