在 firebase 上托管网站后,我无法查看内容
After hosting the website on firebase I am not able to view content
我已按照 firebase 指南在 firebase 托管上托管网站,但网站内容不可见。我在屏幕上看到了图片中共享的这个
我该怎么办?请指导
确保您已将网站设置在正确的文件夹中,因为 Firebase 使用文件夹来包含特定服务的数据,public
用于托管,functions
用于云功能。您可以通过正确打开 firebase.jsonfile at the root of your project You should find something similar if you used
firebase init` 来找出这是什么文件夹
"hosting": {
"public": "public",
一旦您 运行 命令 firebase deploy
或 firebase deploy --only hosting
此文件夹中的所有内容都会上传到您的托管网站。
确保您还检查了 Firebase 提供的两个 URL,因为 web.app
URL 往往需要更长的时间来更新和部署。
<project-id>.firebaseapp.com
除了这些基本技巧之外,我还要确保您进入网站的入口点也是正确的,打开托管文件夹(public 或其他)- 并打开应该在其中的 index.html为您提供在 *.firebaseapp.com
上找到的相同网站
我已按照 firebase 指南在 firebase 托管上托管网站,但网站内容不可见。我在屏幕上看到了图片中共享的这个
我该怎么办?请指导
确保您已将网站设置在正确的文件夹中,因为 Firebase 使用文件夹来包含特定服务的数据,public
用于托管,functions
用于云功能。您可以通过正确打开 firebase.jsonfile at the root of your project You should find something similar if you used
firebase init` 来找出这是什么文件夹
"hosting": {
"public": "public",
一旦您 运行 命令 firebase deploy
或 firebase deploy --only hosting
此文件夹中的所有内容都会上传到您的托管网站。
确保您还检查了 Firebase 提供的两个 URL,因为 web.app
URL 往往需要更长的时间来更新和部署。
<project-id>.firebaseapp.com
除了这些基本技巧之外,我还要确保您进入网站的入口点也是正确的,打开托管文件夹(public 或其他)- 并打开应该在其中的 index.html为您提供在 *.firebaseapp.com