i run command firebase deploy
in my Project/public folder which contains index.html, main.css and an images folder, my webpage is hosted but images are not showing up in my webpage.
答案 0 :(得分:-1)
我遇到了同样的问题。 通过提供相对路径网址来解决该问题
示例:代替使用img src="User/local/..../img/pic.png
使用img src="img/pic.png"
其中img
是公共目录中包含所有图像的文件夹
由于firebase控制台正在从公共目录中读取您的页面(可能是在其他文件夹中完成所有编码后创建的),因此,如果您使用图像的相对路径,则更改父文件夹不会影响网页图像。 / p>
现在使用firebase部署。