4
我在火力託管了3個HTML文件:
- 的index.html
- test1.html
- test2.html
問:
如何刪除html文件test1.html?我很困惑,刪除, 是否設置json文件firebase.json或有其他方法? 感謝您的幫助
我在火力託管了3個HTML文件:
問:
如何刪除html文件test1.html?我很困惑,刪除, 是否設置json文件firebase.json或有其他方法? 感謝您的幫助
取決於你多麼想去掉,你有幾個選擇:
刪除文件
要刪除一個文件,本地刪除,並重新部署。
$ 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.
刪除這些文件並運行'firebase deploy'。這不正常嗎? –
好的謝謝,這是工作 –